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 github actions to v4 #58

Merged
merged 1 commit into from
Feb 29, 2024
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
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Environment
run: env | sort

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: graalvm/setup-graalvm@v1
if: ${{ matrix.musl }}
Expand All @@ -60,7 +60,7 @@ jobs:

- name: Upload fat JAR artifact
if: ${{ matrix.fatjar }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: wave_jar
path: ./app/build/libs/wave.jar
Expand Down Expand Up @@ -104,14 +104,14 @@ jobs:
xcrun notarytool submit "notarization.zip" --keychain-profile "notarytool-profile" --wait

- name: Upload Binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nativeCompile-${{ matrix.os }}
path: ./app/build/native/nativeCompile

- name: Publish tests report
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-reports-jdk-${{ matrix.java_version }}
path: |
Expand All @@ -123,15 +123,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Download all build artifacts
uses: actions/download-artifact@v2

- name: Setup Java for JReleaser
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
Expand All @@ -151,7 +151,7 @@ jobs:

- name: JReleaser release output
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jreleaser-release
path: |
Expand Down