Skip to content

Commit 77be4ce

Browse files
committed
updated actions
1 parent 8133fc7 commit 77be4ce

File tree

11 files changed

+52
-52
lines changed

11 files changed

+52
-52
lines changed

.github/workflows/benchmark.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,26 +30,26 @@ jobs:
3030
access_token: ${{ secrets.github-token }}
3131

3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
with:
3535
ref: ${{ inputs.branch }}
3636
fetch-depth: 0
3737

3838
- name: Set up Java
39-
uses: actions/setup-java@v3
39+
uses: actions/setup-java@v4
4040
with:
4141
java-version: ${{ inputs.java-version }}
4242
distribution: 'zulu'
4343

4444
- name: Cache Gradle
45-
uses: actions/cache@v3
45+
uses: actions/cache@v4
4646
with:
4747
path: ~/.gradle/caches
4848
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}-${{ hashFiles('**/gradle.properties') }}
4949
restore-keys: ${{ runner.os }}-gradle-
5050

5151
- name: Cache Gradle wrapper
52-
uses: actions/cache@v3
52+
uses: actions/cache@v4
5353
with:
5454
path: ~/.gradle/wrapper
5555
key: ${{ runner.os }}-gradlew-${{ hashFiles('**/gradlew') }}
@@ -60,7 +60,7 @@ jobs:
6060
./gradlew jmh -S
6161
6262
- name: Upload benchmark report
63-
uses: actions/upload-artifact@v3
63+
uses: actions/upload-artifact@v4
6464
with:
6565
name: benchmark-report
6666
path: |

.github/workflows/build-maven.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
- name: Set up Java
20-
uses: actions/setup-java@v3
20+
uses: actions/setup-java@v4
2121
with:
2222
java-version: ${{ inputs.java-version }}
2323
distribution: 'zulu'
2424

2525
- name: Cache Maven
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/.m2/repository
2929
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Upload test reports
3737
if: failure()
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: test-reports
4141
path: |

.github/workflows/build-multi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ jobs:
1919
if: startsWith(github.event.head_commit.message, 'Releasing version') != true
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323

2424
- name: Set up Java
25-
uses: actions/setup-java@v3
25+
uses: actions/setup-java@v4
2626
with:
2727
java-version: ${{ inputs.java-version }}
2828
distribution: 'zulu'
2929

3030
- name: Cache Gradle
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/.gradle/caches
3434
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}-${{ hashFiles('**/gradle.properties') }}
3535
restore-keys: ${{ runner.os }}-gradle-
3636

3737
- name: Cache Gradle wrapper
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/.gradle/wrapper
4141
key: ${{ runner.os }}-gradlew-${{ hashFiles('**/gradlew') }}

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
- name: Set up Java
20-
uses: actions/setup-java@v3
20+
uses: actions/setup-java@v4
2121
with:
2222
java-version: ${{ inputs.java-version }}
2323
distribution: 'zulu'
2424

2525
- name: Cache Gradle
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/.gradle/caches
2929
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}-${{ hashFiles('**/gradle.properties') }}
3030
restore-keys: |
3131
${{ runner.os }}-gradle-
3232
3333
- name: Cache Gradle wrapper
34-
uses: actions/cache@v3
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.gradle/wrapper
3737
key: ${{ runner.os }}-gradlew-${{ hashFiles('**/gradlew') }}
@@ -43,7 +43,7 @@ jobs:
4343
4444
- name: Upload test reports
4545
if: failure()
46-
uses: actions/upload-artifact@v3
46+
uses: actions/upload-artifact@v4
4747
with:
4848
name: test-reports
4949
path: |

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
access_token: ${{ secrets.github-token }}
3030

3131
- name: Checkout
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
with:
3434
fetch-depth: 0
3535

@@ -46,7 +46,7 @@ jobs:
4646
password: ${{ secrets.docker-password }}
4747

4848
- name: Build and push
49-
uses: docker/build-push-action@v3
49+
uses: docker/build-push-action@v5
5050
with:
5151
push: ${{ github.event_name != 'pull_request' }}
5252
tags: ${{ inputs.tags }}

.github/workflows/early-access-maven.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,18 @@ jobs:
4646
access_token: ${{ secrets.github-token }}
4747

4848
- name: Checkout
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v4
5050
with:
5151
fetch-depth: 0
5252

5353
- name: Set up Java
54-
uses: actions/setup-java@v3
54+
uses: actions/setup-java@v4
5555
with:
5656
java-version: ${{ inputs.java-version }}
5757
distribution: 'zulu'
5858

5959
- name: Cache Maven
60-
uses: actions/cache@v3
60+
uses: actions/cache@v4
6161
with:
6262
path: ~/.m2/repository
6363
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -70,13 +70,13 @@ jobs:
7070
7171
- name: Upload test reports
7272
if: failure()
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: test-reports
7676
path: target/
7777

7878
- name: Upload coverage to Codecov
79-
uses: codecov/codecov-action@v3
79+
uses: codecov/codecov-action@v4
8080

8181
- name: Version
8282
id: vars
@@ -103,7 +103,7 @@ jobs:
103103

104104
- name: JReleaser output
105105
if: always()
106-
uses: actions/upload-artifact@v3
106+
uses: actions/upload-artifact@v4
107107
with:
108108
name: artifact
109109
path: |

.github/workflows/early-access.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,26 +50,26 @@ jobs:
5050
access_token: ${{ secrets.github-token }}
5151

5252
- name: Checkout
53-
uses: actions/checkout@v3
53+
uses: actions/checkout@v4
5454
with:
5555
fetch-depth: 0
5656

5757
- name: Set up Java
58-
uses: actions/setup-java@v3
58+
uses: actions/setup-java@v4
5959
with:
6060
java-version: ${{ inputs.java-version }}
6161
distribution: 'zulu'
6262

6363
- name: Cache Gradle
64-
uses: actions/cache@v3
64+
uses: actions/cache@v4
6565
with:
6666
path: ~/.gradle/caches
6767
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}-${{ hashFiles('**/gradle.properties') }}
6868
restore-keys: |
6969
${{ runner.os }}-gradle-
7070
7171
- name: Cache Gradle wrapper
72-
uses: actions/cache@v3
72+
uses: actions/cache@v4
7373
with:
7474
path: ~/.gradle/wrapper
7575
key: ${{ runner.os }}-gradlew-${{ hashFiles('**/gradlew') }}
@@ -81,14 +81,14 @@ jobs:
8181
8282
- name: Upload test reports
8383
if: failure()
84-
uses: actions/upload-artifact@v3
84+
uses: actions/upload-artifact@v4
8585
with:
8686
name: test-reports
8787
path: |
8888
build/reports/aggregate-tests/
8989
9090
- name: Upload coverage to Codecov
91-
uses: codecov/codecov-action@v3
91+
uses: codecov/codecov-action@v4
9292

9393
- name: Version
9494
id: vars
@@ -115,7 +115,7 @@ jobs:
115115

116116
- name: JReleaser output
117117
if: always()
118-
uses: actions/upload-artifact@v3
118+
uses: actions/upload-artifact@v4
119119
with:
120120
name: artifact
121121
path: |

.github/workflows/publish-maven.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
with:
3030
ref: ${{ inputs.branch }}
3131
fetch-depth: 0
3232

3333
- name: Set up Java
34-
uses: actions/setup-java@v3
34+
uses: actions/setup-java@v4
3535
with:
3636
distribution: zulu
3737
java-version: ${{ inputs.java-version }}
3838

3939
- name: Cache Maven
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: ~/.m2/repository
4343
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,27 +51,27 @@ jobs:
5151
access_token: ${{ secrets.github-token }}
5252

5353
- name: Checkout
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555
with:
5656
ref: ${{ inputs.branch }}
5757
fetch-depth: 0
5858

5959
- name: Set up Java
60-
uses: actions/setup-java@v3
60+
uses: actions/setup-java@v4
6161
with:
6262
java-version: ${{ inputs.java-version }}
6363
distribution: 'zulu'
6464

6565
- name: Cache Gradle
66-
uses: actions/cache@v3
66+
uses: actions/cache@v4
6767
with:
6868
path: ~/.gradle/caches
6969
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}-${{ hashFiles('**/gradle.properties') }}
7070
restore-keys: |
7171
${{ runner.os }}-gradle-
7272
7373
- name: Cache Gradle wrapper
74-
uses: actions/cache@v3
74+
uses: actions/cache@v4
7575
with:
7676
path: ~/.gradle/wrapper
7777
key: ${{ runner.os }}-gradlew-${{ hashFiles('**/gradlew') }}

.github/workflows/release-maven.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,19 @@ jobs:
5454
access_token: ${{ secrets.github-token }}
5555

5656
- name: Checkout
57-
uses: actions/checkout@v3
57+
uses: actions/checkout@v4
5858
with:
5959
ref: ${{ inputs.branch }}
6060
fetch-depth: 0
6161

6262
- name: Set up Java
63-
uses: actions/setup-java@v3
63+
uses: actions/setup-java@v4
6464
with:
6565
java-version: ${{ inputs.java-version }}
6666
distribution: 'zulu'
6767

6868
- name: Cache Maven
69-
uses: actions/cache@v3
69+
uses: actions/cache@v4
7070
with:
7171
path: ~/.m2/repository
7272
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -84,7 +84,7 @@ jobs:
8484
8585
- name: Upload test reports
8686
if: failure()
87-
uses: actions/upload-artifact@v3
87+
uses: actions/upload-artifact@v4
8888
with:
8989
name: test-reports
9090
path: |
@@ -118,7 +118,7 @@ jobs:
118118

119119
- name: JReleaser output
120120
if: always()
121-
uses: actions/upload-artifact@v3
121+
uses: actions/upload-artifact@v4
122122
with:
123123
name: artifact
124124
path: |

0 commit comments

Comments
 (0)