Skip to content

Commit 6b81de4

Browse files
committed
Switch Oracle distribution to Temurin and CI step naming convention
1 parent 8654293 commit 6b81de4

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/add-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- name: Checkout your code
21+
- name: Check Out Repository
2222
uses: actions/checkout@v3
2323
- name: Labeler
2424
uses: srvaroa/labeler@master

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818
env:
1919
SEGMENT_DOWNLOAD_TIMEOUT_MINS: '5'
2020
steps:
21-
- name: Checkout Main
21+
- name: Checkout Repository
2222
uses: actions/checkout@v4.1.1
2323

2424
- name: Get Short Commit Hash
2525
id: vars
2626
run: echo "COMMIT_HASH=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
2727

28-
- name: Set up JDK
28+
- name: Set-Up JDK 17
2929
uses: actions/setup-java@v4
3030
with:
31-
distribution: 'oracle'
31+
distribution: 'temurin'
3232
java-version: '17'
3333
architecture: x64
3434
cache: 'gradle'

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818
env:
1919
SEGMENT_DOWNLOAD_TIMEOUT_MINS: '5'
2020
steps:
21-
- name: Checkout Main
21+
- name: Checkout Repository
2222
uses: actions/checkout@v4.1.1
2323

2424
- name: Get Short Commit Hash
2525
id: vars
2626
run: echo "COMMIT_HASH=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
2727

28-
- name: Set up JDK
28+
- name: Set-Up JDK 17
2929
uses: actions/setup-java@v4
3030
with:
31-
distribution: 'oracle'
31+
distribution: 'temurin'
3232
java-version: '17'
3333
architecture: x64
3434
cache: 'gradle'
@@ -79,7 +79,7 @@ jobs:
7979
"pr_template": "- #{{TITLE}} [#{{AUTHOR}}](#{{URL}})"
8080
}
8181
82-
- name: Create release
82+
- name: Create Release
8383
uses: softprops/action-gh-release@v2.0.8
8484
with:
8585
name: Lambda ${{ github.ref_name }}

0 commit comments

Comments
 (0)