Skip to content

Commit

Permalink
Merge pull request #29 from maxim-lobanov/mlobanov/update-node-20
Browse files Browse the repository at this point in the history
Update Node.JS to 20.x
  • Loading branch information
maxim-lobanov committed Nov 27, 2023
2 parents 947bf88 + 6b4fc58 commit 8e97e1e
Show file tree
Hide file tree
Showing 6 changed files with 1,869 additions and 1,272 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
uses: actions/checkout@v2

- name: setup-ruby
uses: actions/setup-ruby@v1
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.6'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set Node.JS
uses: actions/setup-node@master
with:
node-version: 16.x
node-version: 20.x

- name: npm install
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
description: 'Path to Podfile.lock file to determine Cocoapods version'
required: false
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'code'
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,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 8e97e1e

Please sign in to comment.