Skip to content

Commit

Permalink
release: upgrade go and java versions
Browse files Browse the repository at this point in the history
  • Loading branch information
SandyXSD committed Feb 4, 2024
1 parent d7c2877 commit e9626b2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '1.18.x'
go-version: 'oldstable'

- name: Set up Java
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'adopt'
distribution: 'temurin'
java-version: '8'
server-id: ossrh
server-username: MAVEN_USERNAME
Expand All @@ -26,7 +26,7 @@ jobs:
gpg-passphrase: MAVEN_GPG_PASSPHRASE

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1

Expand All @@ -39,7 +39,7 @@ jobs:

- name: Cache local Maven repository
id: cache-maven
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down

0 comments on commit e9626b2

Please sign in to comment.