Skip to content

Commit 1c78b16

Browse files
committed
chore(ci): upgrade GitHub Actions to latest versions
Update actions/checkout, setup-java, setup-gradle, cache, and codecov actions to their latest major releases for improved stability and features.
1 parent f1509a4 commit 1c78b16

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
1717
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
22-
- uses: actions/cache@v3
22+
- uses: actions/cache@v4
2323
with:
2424
path: |
2525
~/.gradle/caches
@@ -28,14 +28,14 @@ jobs:
2828
restore-keys: |
2929
${{ runner.os }}-gradle-
3030
- name: Set up JDK
31-
uses: actions/setup-java@v4
31+
uses: actions/setup-java@v5
3232
with:
3333
java-version: 17
3434
distribution: 'zulu'
3535
- name: Build with Gradle
3636
run: ./gradlew clean build koverVerify koverXmlReport
3737
- name: Upload coverage reports to Codecov
38-
uses: codecov/codecov-action@v4.0.1
38+
uses: codecov/codecov-action@v5
3939
with:
4040
token: ${{ secrets.CODECOV_TOKEN }}
4141
slug: tddworks/openai-kotlin

.github/workflows/releaase-to-central-sonatype.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ jobs:
4040
fetch-depth: 0
4141

4242
- name: Setup Java
43-
uses: actions/setup-java@v4
43+
uses: actions/setup-java@v5
4444
with:
4545
distribution: 'temurin'
4646
java-version: 17
4747

4848
- name: Setup Gradle
49-
uses: gradle/actions/setup-gradle@v4
49+
uses: gradle/actions/setup-gradle@v5
5050

5151
- name: Validate version format
5252
run: |

0 commit comments

Comments
 (0)