-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(github): stop using NodeJS v16 based actions due to deprecation
No changes other than the mass find & replacing of the GitHub actions that we use for setting up NodeJS, checking code out and caching. Address the warnings that started popping up in the CI that look like this, asking for a mass-upgrade of CI action versions: > Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: > actions/[email protected], > actions/[email protected], > actions/[email protected] > For more information see: > https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. Fixes #3079 Signed-off-by: Peter Somogyvari <[email protected]>
- Loading branch information
Showing
49 changed files
with
340 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
&& sudo rm -f /etc/apt/sources.list.d/sovrin.list* | ||
- name: Set up NodeJS ${{ env.NODEJS_VERSION }} | ||
uses: actions/setup-node@v3.6.0 | ||
uses: actions/setup-node@v4.0.2 | ||
with: | ||
node-version: ${{ env.NODEJS_VERSION }} | ||
|
||
|
@@ -37,7 +37,7 @@ jobs: | |
- name: Verify jq | ||
run: jq --version | ||
|
||
- uses: actions/checkout@v3.5.2 | ||
- uses: actions/checkout@v4.1.1 | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,11 +29,11 @@ jobs: | |
|
||
steps: | ||
- name: Use Node.js ${{ env.NODEJS_VERSION }} | ||
uses: actions/setup-node@v3.6.0 | ||
uses: actions/setup-node@v4.0.2 | ||
with: | ||
node-version: ${{ env.NODEJS_VERSION }} | ||
|
||
- uses: actions/checkout@v3.5.2 | ||
- uses: actions/checkout@v4.1.1 | ||
|
||
- name: npm_install_@devcontainers/[email protected] | ||
run: npm install -g @devcontainers/[email protected] | ||
|
Oops, something went wrong.