Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- run: npm ci

Expand All @@ -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.1.0

- uses: azure/setup-helm@v1
with:
Expand All @@ -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.1.0
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.1.0

- run: git fetch --unshallow --tags

Expand Down