Skip to content

Commit

Permalink
Update upload/download-artifact actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Dec 19, 2023
1 parent 8736ce3 commit 7b9e911
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Bundle grammars
run: tar cJf grammars.tar.xz -C runtime/grammars/sources .

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: grammars
path: grammars.tar.xz
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
uses: actions/checkout@v4

- name: Download grammars
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Move grammars under runtime
if: "!startsWith(matrix.os, 'windows')"
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
fi
cp -r runtime dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: bins-${{ matrix.build }}
path: dist
Expand All @@ -233,7 +233,7 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v4

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4

- name: Build archive
shell: bash
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
overwrite: true

- name: Upload binaries as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: env.preview == 'true'
with:
name: release
Expand Down

0 comments on commit 7b9e911

Please sign in to comment.