Skip to content

Commit

Permalink
Bump actions/upload-artifact and actions/download-artifact from v3 to…
Browse files Browse the repository at this point in the history
… v4. (#88)
  • Loading branch information
felixfontein authored Feb 15, 2024
1 parent 96549c6 commit b7d63c9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_shared-docs-build-publish-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Retrieve rendered docs
if: inputs.action == 'publish'
id: download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact-name }}
path: html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_shared-docs-build-publish-surge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Retrieve rendered docs
if: inputs.action == 'publish'
id: download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact-name }}
path: html
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test-action-build-html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
artifact-upload: false

- name: Simple 1 - Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
id: simple1-artifact
with:
path: .artifacts/simple1
Expand All @@ -60,7 +60,7 @@ jobs:
artifact-upload: false

- name: Simple 2 - Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
id: simple2-artifact
with:
path: .artifacts/simple2
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
artifact-name: tests-simple3

- name: Simple 3 - Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
id: simple3-artifact
with:
name: ${{ steps.simple3.outputs.artifact-name }}
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
artifact-name: tests-simple4

- name: Simple 4 - Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
id: simple4-artifact
with:
name: ${{ steps.simple4.outputs.artifact-name }}
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
artifact-name: tests-simple5

- name: Simple 5 - Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
id: simple5-artifact
with:
name: ${{ steps.simple5.outputs.artifact-name }}
Expand Down
2 changes: 1 addition & 1 deletion actions/ansible-docs-build-html/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ runs:
- name: Upload artifact
if: fromJSON(inputs.artifact-upload)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ${{ steps.build.outputs.build-html }}
name: ${{ inputs.artifact-name }}
Expand Down

0 comments on commit b7d63c9

Please sign in to comment.