Skip to content

Commit ec9ca3e

Browse files
authored
Update release.yml
Updated from actions/checkout@v2 to actions/checkout@v3 and actions/setup-java@v2 to actions/setup-java@v3. Updated distribution : 'adopt' to 'temurin' This is done to resolve following cache error: Error: getCacheEntry failed: Request timeout: .../_apis/artifactcache/cache?keys=setup-java-Linux-maven-...-setup-java-Linux-maven&version=...
1 parent 0c73b85 commit ec9ca3e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
build:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- name: Set up JDK 8
24-
uses: actions/setup-java@v2
24+
uses: actions/setup-java@v3
2525
with:
2626
java-version: '8'
27-
distribution: 'adopt'
27+
distribution: 'temurin'
2828
cache: maven
2929
- name: Build with Maven
3030
run: |

0 commit comments

Comments
 (0)