Skip to content

Commit a48d12a

Browse files
fix: update repo actions
1 parent 4e8c1b7 commit a48d12a

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.github/workflows/manual-release.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ permissions:
77
contents: write
88

99
jobs:
10-
run-examples:
11-
runs-on: ubuntu-latest
12-
steps:
13-
- name: Run Examples
14-
uses: ./.github/workflows/run-examples.yaml
15-
with:
16-
branch: main
17-
jdk: '1.8'
18-
distribution: 'corretto'
10+
# run-examples:
11+
# runs-on: ubuntu-latest
12+
# steps:
13+
# - name: Run Examples
14+
# uses: ./.github/workflows/run-examples.yaml
15+
# with:
16+
# branch: main
17+
# jdk: 11
18+
# distribution: corretto
1919

2020
run-integration-tests:
2121
runs-on: ubuntu-latest
@@ -24,23 +24,23 @@ jobs:
2424
uses: ./.github/workflows/run-integration-tests.yaml
2525
with:
2626
branch: main
27-
jdk: '1.8'
28-
distribution: 'corretto'
27+
jdk: 11
28+
distribution: corretto
2929

3030
publish-to-maven-central:
3131
runs-on: ubuntu-latest
32-
needs: [run-examples, run-integration-tests]
32+
needs: [run-integration-tests]
3333
steps:
3434
- name: Checkout Repository
3535
uses: actions/checkout@v4
3636
with:
3737
token: ${{ secrets.GITHUB_TOKEN }}
3838

39-
- name: Setup JDK 8
39+
- name: Setup JDK 11
4040
uses: actions/setup-java@v4
4141
with:
42-
distribution: 'corretto'
43-
java-version: '1.8'
42+
java-version: 11
43+
distribution: corretto
4444

4545
- name: Build and Test
4646
run: ./gradlew clean build

.github/workflows/release-sdk-snapshot.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
- name: Checkout
1616
uses: actions/checkout@v4
1717

18-
- name: Setup JDK 8
18+
- name: Setup JDK 11
1919
uses: actions/setup-java@v4
2020
with:
21-
distribution: 'corretto'
22-
java-version: '1.8'
21+
java-version: 11
22+
distribution: corretto
2323

2424
- name: Clean and Build
2525
run: ./gradlew clean build

0 commit comments

Comments
 (0)