Skip to content

Commit 22f202a

Browse files
authored
Update deps (#44)
1 parent 91f8d9e commit 22f202a

File tree

8 files changed

+379
-245
lines changed

8 files changed

+379
-245
lines changed

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- id: 'checkout'
3030
name: 'Checkout'
31-
uses: 'actions/checkout@v3'
31+
uses: 'actions/checkout@v4'
3232

3333
- id: 'compute-test-uid'
3434
name: 'Compute test UID'
@@ -39,7 +39,7 @@ jobs:
3939
name: 'Set up Node'
4040
uses: 'actions/setup-node@v3'
4141
with:
42-
node-version: '16.x'
42+
node-version: '20.x'
4343

4444
- id: 'build'
4545
name: 'Build'

.github/workflows/unit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
runs-on: '${{ matrix.os }}'
2626

2727
steps:
28-
- uses: 'actions/checkout@v3'
28+
- uses: 'actions/checkout@v4'
2929

3030
- uses: 'actions/setup-node@v3'
3131
with:
32-
node-version: '16.x'
32+
node-version: '20.x'
3333

3434
- name: 'npm build'
3535
run: 'npm ci && npm run build'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
id-token: 'write'
3838

3939
steps:
40-
- uses: 'actions/checkout@v3'
40+
- uses: 'actions/checkout@v4'
4141

4242
- uses: 'google-github-actions/auth@v1'
4343
with:

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,5 @@ branding:
120120
color: 'blue'
121121

122122
runs:
123-
using: 'node16'
123+
using: 'node20'
124124
main: 'dist/main/index.js'

dist/main/index.js

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 354 additions & 221 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,32 +31,32 @@
3131
},
3232
"homepage": "https://github.com/google-github-actions/create-cloud-deploy-release#readme",
3333
"dependencies": {
34-
"@actions/core": "^1.10.0",
34+
"@actions/core": "^1.10.1",
3535
"@actions/exec": "^1.1.1",
3636
"@actions/tool-cache": "^2.0.1",
3737
"@google-github-actions/actions-utils": "^0.4.8",
3838
"@google-github-actions/setup-cloud-sdk": "^1.1.2",
3939
"js-yaml": "^4.1.0"
4040
},
4141
"devDependencies": {
42-
"@types/chai": "^4.3.6",
43-
"@types/js-yaml": "^4.0.5",
44-
"@types/mocha": "^10.0.1",
45-
"@types/node": "^20.5.9",
46-
"@types/sinon": "^10.0.16",
47-
"@typescript-eslint/eslint-plugin": "^6.6.0",
48-
"@typescript-eslint/parser": "^6.6.0",
49-
"@vercel/ncc": "^0.36.1",
50-
"chai": "^4.3.8",
51-
"eslint": "^8.48.0",
42+
"@types/chai": "^4.3.9",
43+
"@types/js-yaml": "^4.0.8",
44+
"@types/mocha": "^10.0.3",
45+
"@types/node": "^20.8.9",
46+
"@types/sinon": "^10.0.20",
47+
"@typescript-eslint/eslint-plugin": "^6.9.0",
48+
"@typescript-eslint/parser": "^6.9.0",
49+
"@vercel/ncc": "^0.38.1",
50+
"chai": "^4.3.10",
51+
"eslint": "^8.52.0",
5252
"eslint-config-prettier": "^9.0.0",
53-
"eslint-plugin-prettier": "^5.0.0",
54-
"googleapis": "^126.0.1",
53+
"eslint-plugin-prettier": "^5.0.1",
54+
"googleapis": "^128.0.0",
5555
"mocha": "^10.2.0",
5656
"prettier": "^3.0.3",
57-
"sinon": "^15.2.0",
57+
"sinon": "^17.0.0",
5858
"ts-node": "^10.9.1",
5959
"typescript": "^5.2.2",
60-
"yaml": "^2.3.2"
60+
"yaml": "^2.3.3"
6161
}
6262
}

tests/unit/output-parser.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,7 @@ describe('#output-parser', () => {
294294
{
295295
name: 'fails on invalid text from stdout',
296296
stdout: 'Some text to fail',
297-
error:
298-
'failed to parse create release response: unexpected token S in JSON at position 0, stdout: Some text to fail',
297+
error: `failed to parse create release response: unexpected token 'S', "Some text to fail" is not valid JSON, stdout: Some text to fail`,
299298
},
300299
];
301300

0 commit comments

Comments
 (0)