Skip to content

Commit

Permalink
Update GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpaljak committed Sep 14, 2023
1 parent a57cb2b commit 02bec4c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
name: Java ${{ matrix.java }}
steps:
- name: Check out code
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.1.0
- name: Cache local Maven repository
uses: actions/[email protected].8
uses: actions/[email protected].11
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Setup java
uses: actions/setup-java@v3.4.1
uses: actions/setup-java@v3.6.0
with:
java-version: ${{ matrix.java }}
distribution: temurin
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3.0.2
uses: actions/checkout@3.1.0
- name: Setup Java
uses: actions/setup-java@v3.4.1
uses: actions/setup-java@v3.6.0
with:
java-version: 11
distribution: temurin
- name: Set SSH key
uses: webfactory/ssh-agent@v0.5.4
uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.SSH_KEY }}
- name: Add known host key
Expand Down

0 comments on commit 02bec4c

Please sign in to comment.