Skip to content

Commit

Permalink
chore(gha): bump actions/download-artifact from 3 to 4 (#2995)
Browse files Browse the repository at this point in the history
`actions/upload-artifact` must be bumped in the workflow where actions/download-artifact@4 is used because "Downloading artifacts that were created from action/upload-artifact@v3 and below are not supported".
  • Loading branch information
dependabot[bot] authored Dec 20, 2023
1 parent eb1d242 commit ddd60a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/generate-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Build docs
run: npm run docs
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: documentation-${{github.sha}}
path: build/docs
Expand All @@ -72,7 +72,7 @@ jobs:
contents: write # Push to gh-pages
steps:
- name: Download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: documentation-${{github.sha}}
- name: Push to gh-pages
Expand Down

0 comments on commit ddd60a6

Please sign in to comment.