File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ jobs:
11
11
12
12
steps :
13
13
- name : Checkout Repository
14
- uses : actions/checkout@v2
14
+ uses : actions/checkout@v3
15
15
16
16
- name : Set up Node.js
17
- uses : actions/setup-node@v2
17
+ uses : actions/setup-node@v3
18
18
with :
19
19
node-version : ' 18.x' # Ensure the version matches your local environment
20
20
21
21
- name : Cache node_modules
22
- uses : actions/cache@v2
22
+ uses : actions/cache@v3
23
23
with :
24
24
path : node_modules
25
25
key : ${{ runner.os }}-node_modules-${{ hashFiles('package-lock.json') }}
36
36
run : npm run build -- --configuration=production
37
37
38
38
- name : Upload Build Artifacts
39
- uses : actions/upload-artifact@v2
39
+ uses : actions/upload-artifact@v3
40
40
with :
41
41
name : dist
42
42
path : dist
You can’t perform that action at this time.
0 commit comments