Commit 1d5059f 1 parent e86d489 commit 1d5059f Copy full SHA for 1d5059f
File tree 1 file changed +9
-10
lines changed
1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -26,34 +26,33 @@ jobs:
26
26
runs-on : ubuntu-latest
27
27
steps :
28
28
- name : Checkout
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
31
31
- name : Install pnpm
32
- uses : pnpm/action-setup@v3
32
+ uses : pnpm/action-setup@v4
33
33
with :
34
34
version : 9
35
+ run_install : false
35
36
36
37
- name : Install Node.js
37
- uses : actions/setup-node@v3
38
+ uses : actions/setup-node@v4
38
39
with :
39
- node-version : 18
40
- cache : pnpm
40
+ node-version : 22
41
+ cache : ' pnpm'
41
42
42
43
- name : Install dependencies
43
44
run : pnpm install --frozen-lockfile
44
45
45
46
- name : Setup Pages
46
- uses : actions/configure-pages@v3
47
+ uses : actions/configure-pages@v5
47
48
with :
48
49
static_site_generator : sveltekit
49
50
50
51
- name : Build
51
- env :
52
- GOOGLE_FONTS_API_KEY : ${{ secrets.GOOGLE_FONTS_API_KEY }}
53
52
run : pnpm run build
54
53
55
54
- name : Upload Artifacts
56
- uses : actions/upload-pages-artifact@v1
55
+ uses : actions/upload-pages-artifact@v3
57
56
with :
58
57
# this should match the `pages` option in your adapter-static options
59
58
path : ' build/'
69
68
steps :
70
69
- name : Deploy
71
70
id : deployment
72
- uses : actions/deploy-pages@v1
71
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments