Skip to content

Commit

Permalink
Switch to v4 of the upload-artifact action.
Browse files Browse the repository at this point in the history
GitHub deprecated v2 a while ago, and that appears to be causing Circle
CI failures.
  • Loading branch information
guyharris committed Nov 24, 2024
1 parent df0f3a0 commit a4a405e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/archive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: "Save Archive"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: archive.json
4 changes: 2 additions & 2 deletions .github/workflows/ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: "Save HTML"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: "*.html"

- name: "Save Text"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: "*.txt"

0 comments on commit a4a405e

Please sign in to comment.