Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpaljak committed Apr 3, 2024
1 parent f0531ff commit 95edd75
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/robot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
name: Java ${{ matrix.java }}
steps:
- name: Check out code
uses: actions/checkout@v4.0.0
uses: actions/checkout@v4
- name: Setup java
uses: actions/setup-java@v3.12.0
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: zulu
cache: maven
- run: ./mvnw -B -U -T1C verify
- run: ./mvnw -P exe -B -U -T1C verify
- name: Release
if: startsWith(github.ref, 'refs/tags/v') && matrix.java == '11'
id: create_release
Expand All @@ -38,7 +38,7 @@ jobs:
body: Release ${{ github.ref_name }}
prerelease: true # manually promoted
- name: Set SSH key
uses: webfactory/ssh-agent@v0.8.0
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SSH_KEY }}
- name: Add known host key
Expand Down

0 comments on commit 95edd75

Please sign in to comment.