Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update to v4 actions artifacts #2195

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading