Skip to content

Commit

Permalink
Update plugin versions
Browse files Browse the repository at this point in the history
  • Loading branch information
beikov committed Dec 19, 2024
1 parent d23ba94 commit 2675d6a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ jobs:
- jdk: 19
build-jdk: 19
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Java 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- name: Set env
run: echo "JDK8_HOME=$(echo $JAVA_HOME)" >> $GITHUB_ENV
- name: Set up Requested JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.jdk == 19 && '19-ea' || matrix.jdk }}
distribution: 'temurin'
Expand All @@ -47,7 +47,7 @@ jobs:
echo "::set-output name=yearmonth::$(/bin/date -u "+%Y-%m")"
shell: bash
- name: Cache Maven local repository
uses: actions/cache@v2
uses: actions/cache@v4
id: cache-maven
with:
path: |
Expand All @@ -66,7 +66,7 @@ jobs:
shell: bash

- name: Upload test reports (if Maven failed)
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-reports-jdk${{ matrix.jdk }}-build-jdk${{ matrix.build-jdk }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
name: Publish Snapshot
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Java 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- name: Set env
run: echo "JDK8_HOME=$(echo $JAVA_HOME)" >> $GITHUB_ENV
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
Expand All @@ -30,7 +30,7 @@ jobs:
echo "::set-output name=yearmonth::$(/bin/date -u "+%Y-%m")"
shell: bash
- name: Cache Maven local repository
uses: actions/cache@v2
uses: actions/cache@v4
id: cache-maven
with:
path: |
Expand Down

0 comments on commit 2675d6a

Please sign in to comment.