Skip to content

Commit

Permalink
fixed actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
bourgesl committed Oct 3, 2024
1 parent c5a127c commit bce9666
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'
distribution: 'adopt'
cache: maven
cache: 'maven'

- name: Build (Maven)
run: |
Expand All @@ -42,8 +42,10 @@ jobs:
echo "That's All, folks !"
- name: Upload
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: oitools-bin
path: oitools-bin.tar.gz
retention-days: 7
overwrite: true

0 comments on commit bce9666

Please sign in to comment.