Skip to content

Commit ec260b2

Browse files
shmamjpg619
andauthored
deps: sync dependency update changes from fork action-deploy (#4)
* fix dependabot alerts (npm#57) * nock 13.5.1 * Revert "nock 13.5.1" This reverts commit dd1d7ad. * mock commit * Revert "mock commit" This reverts commit 10c7bab. * @zeit/ncc replaced by @vercel/ncc * nock 13.5.4 * typescript 3.9.7 * ts-standard 12.0.2 * ts-jest 26.5.6 * @types/node 17.0.41 * @types/jest 27.4.1 * @typescript-eslint/parser 7.1.1 * @types/sinon 17.0.3 * js-yaml 4.1.0 * @types/node and typescript * jest 26.6.3 * typescript code cleanup * jest and related * jest 28.1.3 * jest-circus and sinon * typescript 4.9.5 * @slack/web-api 7.0.2 * @actions/core 1.6.0 * reverting console.error * version bump * deps: upgrading `@actions/github` to 6.0.0 (npm#65) * deps: upgrading @actions/github to 6.0.0 which included a pretty big re-write * 2.6.0 * updating dist * fix: pre version bump * 2.6.0 --------- Co-authored-by: Jithin Prabhakaran Girija <[email protected]>
1 parent 6ca4f9d commit ec260b2

File tree

12 files changed

+85392
-71631
lines changed

12 files changed

+85392
-71631
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v4
1212

1313
- name: create a deployment
14-
uses: npm/action-deploy@v2.1.1
14+
uses: npm/action-deploy@v2.6.0
1515
id: create-deployment
1616
with:
1717
type: create

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,17 @@ jobs:
1010
build: # make sure build/ci work properly
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v1
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version-file: '.nvmrc'
1417
- run: |
1518
npm install
1619
npm run all
1720
test: # make sure the action works on a clean machine without building
1821
runs-on: ubuntu-latest
1922
steps:
20-
- uses: actions/checkout@v1
23+
- uses: actions/checkout@v4
2124
- uses: ./
2225
name: Delete all deployments
2326
with:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lts/gallium
1+
lts/iron

.vscode/launch.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "launch",
7+
"name": "Jest watch current file",
8+
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
9+
"args": [
10+
"${fileBasename}",
11+
"--no-cache",
12+
"--verbose",
13+
"--config",
14+
"${workspaceFolder}/jest.config.js",
15+
],
16+
"console": "integratedTerminal",
17+
"internalConsoleOptions": "neverOpen",
18+
"runtimeVersion": "20"
19+
}
20+
]
21+
}

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ inputs:
2121
required: false
2222
description: Sha of the deployment
2323
runs:
24-
using: 'node16'
24+
using: 'node20'
2525
main: 'dist/main/index.js'

0 commit comments

Comments
 (0)