Skip to content

Commit

Permalink
Update workflows and action to NodeJS 20
Browse files Browse the repository at this point in the history
Fixes #160
  • Loading branch information
deejay1 authored and bigdaz committed Jan 29, 2024
1 parent c8fad9e commit 8be8473
Show file tree
Hide file tree
Showing 7 changed files with 2,766 additions and 9,025 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check-dist.yml
Expand Up @@ -21,13 +21,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set Node.js 16.x
uses: actions/setup-node@v3.7.0
- name: Set Node.js 20.x
uses: actions/setup-node@v4.0.1
with:
node-version: 16.x
node-version: 20.x

- name: Validate package-lock
run: npx lockfile-lint --path package-lock.json --allowed-hosts npm yarn --validate-https

Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -10,11 +10,12 @@ jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js 16.x
uses: actions/setup-node@v3.7.0
- uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4.0.1
with:
node-version: 16.x
node-version: 20.x
cache: npm
- run: |
npm -v
node -v
Expand All @@ -23,7 +24,7 @@ jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
# to allow the invalid wrapper jar present in test data
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Expand Up @@ -24,11 +24,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -39,7 +39,7 @@ jobs:
# 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)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -53,4 +53,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -21,7 +21,7 @@ outputs:
description: The path of the Gradle Wrapper(s) JAR that failed validation.

runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'

branding:
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Expand Up @@ -889,7 +889,7 @@ class OidcClient {
.catch(error => {
throw new Error(`Failed to get ID Token. \n
Error Code : ${error.statusCode}\n
Error Message: ${error.result.message}`);
Error Message: ${error.message}`);
});
const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value;
if (!id_token) {
Expand Down

0 comments on commit 8be8473

Please sign in to comment.