Skip to content

Commit

Permalink
Update {upload,download}-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and rjhenry committed Dec 20, 2023
1 parent 68dbd66 commit 89aa4c5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
outputs: type=docker,dest=/tmp/image-bookstack.tar

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: image-bookstack-master
path: /tmp/image-bookstack.tar
Expand All @@ -51,7 +51,7 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: image-bookstack-master
path: /tmp
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
type=ref,event=branch
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: image-bookstack-master
path: /tmp
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
outputs: type=docker,dest=/tmp/image-bookstack.tar

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: image-bookstack
path: /tmp/image-bookstack.tar
Expand All @@ -52,7 +52,7 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: image-bookstack
path: /tmp
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
outputs: type=docker,dest=/tmp/image-bookstack.tar

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: image-bookstack-master
path: /tmp/image-bookstack.tar
Expand All @@ -50,7 +50,7 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: image-bookstack-master
path: /tmp
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
type=semver,pattern={{major}}.{{minor}}.{{patch}}
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: image-bookstack-master
path: /tmp
Expand Down

0 comments on commit 89aa4c5

Please sign in to comment.