Skip to content

Commit 68439f7

Browse files
committed
fix: correct action versions (upload-pages-artifact@v4, upload-artifact@v7, download-artifact@v8)
upload-pages-artifact@v5 does not exist — reverted to @v4 (latest available). upload-artifact bumped to @v7 (latest), download-artifact to @v8 (latest).
1 parent a5febe6 commit 68439f7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/quarto-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,14 @@ jobs:
112112
npx --yes @divriots/jampack ./_site
113113
114114
- name: Upload Built Artifacts
115-
uses: actions/upload-artifact@v5
115+
uses: actions/upload-artifact@v7
116116
with:
117117
name: built-site
118118
path: _site
119119

120120
- name: Upload static files as artifact
121121
id: deployment
122-
uses: actions/upload-pages-artifact@v5 # or specific "vX.X.X" version tag for this action
122+
uses: actions/upload-pages-artifact@v4 # or specific "vX.X.X" version tag for this action
123123
with:
124124
path: _site
125125

@@ -130,7 +130,7 @@ jobs:
130130

131131
steps:
132132
- name: Download Built Artifacts
133-
uses: actions/download-artifact@v5
133+
uses: actions/download-artifact@v8
134134
with:
135135
name: built-site
136136
path: _site

0 commit comments

Comments
 (0)