From 768e16210b565a8fefe3468191a2e94f69bbe8cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jun 2022 14:32:52 +0200 Subject: [PATCH] Bump actions/checkout from 2 to 3 (#1953) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/dev.yml | 4 ++-- .github/workflows/pr-checks.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 182b0aa22..62f6df4bc 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -32,7 +32,7 @@ jobs: version_pr=$(printf "%05d" ${{ github.event.pull_request.number }}) echo "Development build for PR #${{ github.event.pull_request.number }}" echo "::set-output name=version_pr::${version_pr}" - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Get Major/Minor version id: version_main run: | @@ -78,7 +78,7 @@ jobs: return { "ref": context.payload.pull_request.head.sha } - name: Checkout source - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: true persist-credentials: false diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 47c39b33f..b62b46d79 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 18a50b113..f7a9f752c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: version_dev: ${{ steps.version_check.outputs.version_dev }} matrix: ${{ steps.generate_matrix.outputs.result }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Validate version id: version_check run: | @@ -52,7 +52,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true