@@ -19,10 +19,10 @@ jobs:
19
19
20
20
steps :
21
21
- name : Checkout Repository
22
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
23
23
24
24
- name : Setup Node.js ${{ matrix.node-version }}
25
- uses : actions/setup-node@v3
25
+ uses : actions/setup-node@v4
26
26
with :
27
27
node-version : ${{ matrix.node-version }}
28
28
39
39
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
40
40
41
41
- name : Setup pnpm cache
42
- uses : actions/cache@v3
42
+ uses : actions/cache@v4
43
43
with :
44
44
path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
45
45
key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
71
71
72
72
- name : Upload test results
73
73
if : ${{ always() }}
74
- uses : actions/upload-artifact@v3
74
+ uses : actions/upload-artifact@v4
75
75
with :
76
76
name : test-results-${{ matrix.os }}-${{ matrix.vscode-version }}
77
77
path : .vscode-test/
@@ -85,10 +85,10 @@ jobs:
85
85
86
86
steps :
87
87
- name : Checkout Repository
88
- uses : actions/checkout@v3
88
+ uses : actions/checkout@v4
89
89
90
90
- name : Setup Node.js
91
- uses : actions/setup-node@v3
91
+ uses : actions/setup-node@v4
92
92
with :
93
93
node-version : 18.x
94
94
@@ -105,7 +105,7 @@ jobs:
105
105
run : pnpm run package
106
106
107
107
- name : Upload Extension Package
108
- uses : actions/upload-artifact@v3
108
+ uses : actions/upload-artifact@v4
109
109
with :
110
110
name : extension-package
111
111
path : ' *.vsix'
0 commit comments