Skip to content

Commit

Permalink
Tets new actions' version
Browse files Browse the repository at this point in the history
  • Loading branch information
pgeadas committed Jan 23, 2024
1 parent 821aad7 commit 84c06d8
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: env | sort

- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand All @@ -48,7 +48,7 @@ jobs:
run: ./gradlew check

- name: Tests reports
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: linux-test-reports
Expand All @@ -58,7 +58,7 @@ jobs:
run: ./gradlew nativeCompile

- name: Upload linux native image artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: migtool_linux
path: build/native/nativeCompile/migtool
Expand All @@ -75,16 +75,17 @@ 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
uses: actions/download-artifact@v4

- name: Setup Java for JReleaser
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 17

- name: Version
Expand Down

0 comments on commit 84c06d8

Please sign in to comment.