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

Bump download and upload actions #149

Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Format check for C
run: git diff --exit-code

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload artifacts
if: ${{ matrix.java-version == 8 }}
with:
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Tests
run: mvn -B -V clean test site

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload Mac OS Artifacts
if: ${{ matrix.os == 'macos-latest' && matrix.java-version == 8 }}
with:
Expand Down Expand Up @@ -199,13 +199,13 @@ jobs:
${{ runner.os }}-maven-

- name: Download Docker binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: docker-built-shared-objects
path: src/main/resources/

- name: Download Mac binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: macos-built-shared-objects
path: src/main/resources/
Expand Down
Loading