From e283a8a9c48789fe3453208c7d8c1aee8e2f89ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Mar 2022 03:10:15 +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/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8b95b0a5..64835775 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: npm ci @@ -26,7 +26,7 @@ jobs: matrix: helm: ['2.17.0', '3.4.2', '3.7.1'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: azure/setup-helm@v1 with: @@ -46,13 +46,13 @@ jobs: steps: # workaround for missing secret in fork PRs - see https://github.com/actions/checkout/issues/298 - if: github.event.pull_request.head.repo.full_name == github.repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: token: ${{ secrets.PAT_TOKEN }} # in forks, the token is not available so we cannot use it - if: github.event.pull_request.head.repo.full_name != github.repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - run: git fetch --unshallow --tags