Skip to content

Commit

Permalink
upgrade checkout action to v3 because of node 12 deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
shaynafinocchiaro committed Jan 11, 2023
1 parent 3bc4b15 commit 7a7db2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/charts-release-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
# Check out code
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/helm-validations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
outputs:
run_tests: ${{ steps.diff.outputs.run_tests }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Check for files changed
id: diff
run: |
Expand All @@ -33,7 +33,7 @@ jobs:
steps:
# Check out the repo
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: "0"

Expand All @@ -54,7 +54,7 @@ jobs:
steps:
# Check out the repo
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: "0"

Expand Down

0 comments on commit 7a7db2b

Please sign in to comment.