Skip to content

Commit

Permalink
Update GitHub action dependencies to get rid of Node 20 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jblievremont committed Oct 1, 2024
1 parent ab7d7ca commit 531d355
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ jobs:
ARTIFACTORY_URL: https://repox.jfrog.io/artifactory
steps:
- name: Checkout custom actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
clean: false
- name: Use Node 18
uses: actions/setup-node@v3
- name: Use Node 20
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
- name: Get vault secrets
id: secrets
uses: SonarSource/vault-action-wrapper@dc8fe04652687f7278f3ecd27905967836bab0eb # tag=2.7.4-1
uses: SonarSource/vault-action-wrapper@3.0.1
with:
secrets: |
development/artifactory/token/{REPO_OWNER_NAME_DASH}-private-reader access_token | ARTIFACTORY_ACCESS_TOKEN;
Expand Down Expand Up @@ -106,14 +106,14 @@ jobs:
ARTIFACTORY_URL: https://repox.jfrog.io/artifactory
steps:
- name: Checkout custom actions
uses: actions/checkout@v3
- name: Use Node 18
uses: actions/setup-node@v3
uses: actions/checkout@v4
- name: Use Node 20
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
- name: Get vault secrets
id: secrets
uses: SonarSource/vault-action-wrapper@dc8fe04652687f7278f3ecd27905967836bab0eb # tag=2.7.4-1
uses: SonarSource/vault-action-wrapper@3.0.1
with:
secrets: |
development/artifactory/token/{REPO_OWNER_NAME_DASH}-private-reader access_token | ARTIFACTORY_ACCESS_TOKEN;
Expand Down

0 comments on commit 531d355

Please sign in to comment.