Skip to content

Commit

Permalink
chore: Update to v4 actions artifacts (#2195)
Browse files Browse the repository at this point in the history
  • Loading branch information
spotandjake authored Nov 15, 2024
1 parent a8a3f78 commit 6692124
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Upload pkg binary for Windows
if: inputs.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ./grain.tar
name: grain-win-x64
Expand All @@ -98,7 +98,7 @@ jobs:
- name: Upload pkg binary for Mac
if: inputs.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ./grain.tar
name: grain-mac-x64
Expand All @@ -112,7 +112,7 @@ jobs:
- name: Upload pkg binary for Linux
if: inputs.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ./grain.tar
name: grain-linux-x64
2 changes: 1 addition & 1 deletion .github/workflows/build-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
# Upload the artifacts before we run the tests so we
# can download to debug if tests fail in a weird way
- name: Upload native compiler artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: native-build-artifacts-${{ runner.os }}-${{ runner.arch }}
path: cli/bin/*.exe
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
token: ${{ secrets.PUSH_TOKEN }}

- name: Fetch linux binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: grain-linux-x64

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
ref: ${{ inputs.ref }}

- name: Fetch pkg binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: grain-${{ matrix.name }}-x64

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/upload-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
git push origin ${{ inputs.tag }} -f
- name: Fetch linux binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: grain-linux-x64

Expand All @@ -55,7 +55,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.UPLOAD_TOKEN }}

- name: Fetch mac binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: grain-mac-x64

Expand All @@ -69,7 +69,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.UPLOAD_TOKEN }}

- name: Fetch win binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: grain-win-x64

Expand Down

0 comments on commit 6692124

Please sign in to comment.