Update to Node 20 (#170)

- Change action to run with Node20 runtime
- Use Node20 compatible actions in all workflows
- Update NPM dependencies for Node 20 compatibility

Thanks to @deejay1 for getting this started!
This commit is contained in:
Daz DeBoer 2024-01-29 21:45:22 +01:00 committed by GitHub
commit 27152f6fa0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 26048 additions and 8499 deletions

View file

@ -21,12 +21,13 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set Node.js 16.x - name: Set Node.js 20.x
uses: actions/setup-node@v3.7.0 uses: actions/setup-node@v4
with: with:
node-version: 16.x node-version: 20.x
cache: npm
- name: Validate package-lock - name: Validate package-lock
run: npx lockfile-lint --path package-lock.json --allowed-hosts npm yarn --validate-https run: npx lockfile-lint --path package-lock.json --allowed-hosts npm yarn --validate-https
@ -47,7 +48,7 @@ jobs:
id: diff id: diff
# If index.js was different than expected, upload the expected version as an artifact # If index.js was different than expected, upload the expected version as an artifact
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v4
if: ${{ failure() && steps.diff.conclusion == 'failure' }} if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with: with:
name: dist name: dist

View file

@ -10,11 +10,12 @@ jobs:
build: # make sure build/ci work properly build: # make sure build/ci work properly
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set Node.js 16.x - name: Set Node.js 20.x
uses: actions/setup-node@v3.7.0 uses: actions/setup-node@v4
with: with:
node-version: 16.x node-version: 20.x
cache: npm
- run: | - run: |
npm -v npm -v
node -v node -v
@ -23,7 +24,7 @@ jobs:
test: # make sure the action works on a clean machine without building test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: ./ - uses: ./
with: with:
# to allow the invalid wrapper jar present in test data # to allow the invalid wrapper jar present in test data

View file

@ -24,11 +24,11 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning. # Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL - name: Initialize CodeQL
uses: github/codeql-action/init@v2 uses: github/codeql-action/init@v3
with: with:
languages: ${{ matrix.language }} languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file. # If you wish to specify custom queries, you can do so here or in a config file.
@ -39,7 +39,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below) # If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild - name: Autobuild
uses: github/codeql-action/autobuild@v2 uses: github/codeql-action/autobuild@v3
# Command-line programs to run using the OS shell. # Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl # 📚 https://git.io/JvXDl
@ -53,4 +53,4 @@ jobs:
# make release # make release
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2 uses: github/codeql-action/analyze@v3

2
.tool-versions Normal file
View file

@ -0,0 +1,2 @@
# Configuration file for asdf version manager
nodejs 20.10.0

View file

@ -21,7 +21,7 @@ outputs:
description: The path of the Gradle Wrapper(s) JAR that failed validation. description: The path of the Gradle Wrapper(s) JAR that failed validation.
runs: runs:
using: 'node16' using: 'node20'
main: 'dist/index.js' main: 'dist/index.js'
branding: branding:

24129
dist/index.js vendored

File diff suppressed because one or more lines are too long

10358
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -25,24 +25,24 @@
"author": "Gradle Inc.", "author": "Gradle Inc.",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "1.10.0", "@actions/core": "1.10.1",
"typed-rest-client": "1.8.11", "typed-rest-client": "1.8.11",
"unhomoglyph": "1.0.6" "unhomoglyph": "1.0.6"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "16.18.38", "@types/node": "16.18.38",
"@typescript-eslint/parser": "6.1.0", "@typescript-eslint/parser": "6.20.0",
"@vercel/ncc": "0.36.1", "@vercel/ncc": "0.38.1",
"eslint": "8.45.0", "eslint": "8.56.0",
"eslint-plugin-github": "4.9.2", "eslint-plugin-github": "4.10.1",
"eslint-plugin-jest": "27.2.3", "eslint-plugin-jest": "27.6.3",
"eslint-plugin-prettier": "5.0.0", "eslint-plugin-prettier": "5.1.3",
"glob-parent": "6.0.2", "glob-parent": "6.0.2",
"jest": "29.6.1", "jest": "29.7.0",
"js-yaml": "4.1.0", "js-yaml": "4.1.0",
"nock": "13.3.2", "nock": "13.5.1",
"prettier": "3.0.0", "prettier": "3.2.4",
"ts-jest": "29.1.1", "ts-jest": "29.1.2",
"typescript": "5.1.6" "typescript": "5.3.3"
} }
} }