From eed51a3165a5fd60f55ae2fd8460cd88b0cbab7a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 12:17:42 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/container.yml | 2 +- .github/workflows/integration.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- .github/workflows/pr.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 76f3794430..4c3ad07b9e 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -36,7 +36,7 @@ jobs: - { dockerfile: 'Dockerfile-Arch', tag: 'arch:latest' } steps: - name: Check out the repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 # with: diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 62bcc33442..c87d1b2422 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -29,7 +29,7 @@ jobs: options: "--privileged -v /dev:/dev" steps: - name: "Checkout Repository" - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -74,7 +74,7 @@ jobs: options: "--privileged -v /dev:/dev" steps: - name: "Checkout Repository" - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7b1b8ee74b..6e14996d1f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: install tools run: sudo apt-get install astyle @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: shfmt uses: luizm/action-sh-checker@v0.2.2 diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index ee46168e86..60ca1db75a 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check-out the repo under $GITHUB_WORKSPACE - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run Commisery uses: dracutdevs/commisery-action@master