Skip to content

Commit 6145b17

Browse files
authored
chore: update actions/checkout v3 and actions/setup-node v3 (#81)
1 parent b87e054 commit 6145b17

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

.devcontainer/devcontainer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "Node.js & TypeScript",
3+
"image": "mcr.microsoft.com/devcontainers/typescript-node:14-bullseye",
4+
5+
// Features to add to the dev container. More info: https://containers.dev/features.
6+
// "features": {},
7+
8+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
9+
// "forwardPorts": [],
10+
"mounts": [
11+
"source=try-node-node_modules,target=${containerWorkspaceFolder}/node_modules,type=volume"
12+
],
13+
// Use 'postCreateCommand' to run commands after the container is created.
14+
// "postCreateCommand": "yarn install",
15+
16+
// Configure tool-specific properties.
17+
// "customizations": {},
18+
19+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
20+
// "remoteUser": "root"
21+
}

.github/workflows/DEPLOY.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
deploy:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Use Node.js
16-
uses: actions/setup-node@v2
16+
uses: actions/setup-node@v3
1717
with:
1818
node-version: 14.x
1919
- name: Use the latest npm

.github/workflows/TEST.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: Use Node.js
14-
uses: actions/setup-node@v2
14+
uses: actions/setup-node@v3
1515
with:
1616
node-version: 14.x
1717
- name: Use the latest npm

0 commit comments

Comments
 (0)