Skip to content

Commit bb5b2b9

Browse files
committed
update workflows to v4 of the artifact actions
1 parent f90b28d commit bb5b2b9

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/ssd_publish.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ permissions:
99
contents: read
1010
pages: write
1111
id-token: write
12+
actions: read # required by deploy-pages@v4
1213

1314
concurrency:
1415
group: "pages"
@@ -22,13 +23,16 @@ jobs:
2223
runs-on: ubuntu-latest
2324
steps:
2425
- name: Checkout
25-
uses: actions/checkout@v3
26+
uses: actions/checkout@v5
27+
2628
- name: Setup Pages
27-
uses: actions/configure-pages@v3
29+
uses: actions/configure-pages@v5
30+
2831
- name: Upload artifact
29-
uses: actions/upload-pages-artifact@v1
32+
uses: actions/upload-pages-artifact@v4
3033
with:
31-
path: 'docs/'
34+
path: docs/
35+
3236
- name: Deploy to GitHub Pages
3337
id: deployment
34-
uses: actions/deploy-pages@v2
38+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)