Skip to content

Commit 8e97e1e

Browse files
Merge pull request #29 from maxim-lobanov/mlobanov/update-node-20
Update Node.JS to 20.x
2 parents 947bf88 + 6b4fc58 commit 8e97e1e

File tree

6 files changed

+1869
-1272
lines changed

6 files changed

+1869
-1272
lines changed

Diff for: .github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
uses: actions/checkout@v2
133133

134134
- name: setup-ruby
135-
uses: actions/setup-ruby@v1
135+
uses: ruby/setup-ruby@v1
136136
with:
137137
ruby-version: '2.6'
138138

Diff for: .github/workflows/workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set Node.JS
1919
uses: actions/setup-node@master
2020
with:
21-
node-version: 16.x
21+
node-version: 20.x
2222

2323
- name: npm install
2424
run: npm install

Diff for: action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
description: 'Path to Podfile.lock file to determine Cocoapods version'
1010
required: false
1111
runs:
12-
using: 'node16'
12+
using: 'node20'
1313
main: 'dist/index.js'
1414
branding:
1515
icon: 'code'

Diff for: dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ class OidcClient {
748748
.catch(error => {
749749
throw new Error(`Failed to get ID Token. \n
750750
Error Code : ${error.statusCode}\n
751-
Error Message: ${error.result.message}`);
751+
Error Message: ${error.message}`);
752752
});
753753
const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value;
754754
if (!id_token) {

0 commit comments

Comments
 (0)