Skip to content

Commit 994f481

Browse files
Update all github actions (#320)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 827e046 commit 994f481

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
# actions/checkout v1.* is needed for correct codecov upload, see https://github.com/actions/checkout/issues/237 for details
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
# ensure that gradle wrapper files in repository are valid by checking checksums
2828
- uses: gradle/actions/wrapper-validation@v4
2929
- name: Set up JDK 21
@@ -39,7 +39,7 @@ jobs:
3939
restore-keys: |
4040
${{ runner.os }}-gradle-konan
4141
- name: Gradle build with remote cache
42-
uses: burrunan/gradle-cache-action@v2
42+
uses: burrunan/gradle-cache-action@v3
4343
with:
4444
arguments: |
4545
build

.github/workflows/detekt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
GRADLE_OPTS: -Dorg.gradle.daemon=false
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Set up JDK 21
1717
uses: actions/setup-java@v4
1818
with:
1919
distribution: 'temurin'
2020
java-version: 21
2121
- name: Gradle build with remote cache
22-
uses: burrunan/gradle-cache-action@v2
22+
uses: burrunan/gradle-cache-action@v3
2323
with:
2424
arguments: detektAll
2525
properties: |

.github/workflows/diktat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
GRADLE_OPTS: -Dorg.gradle.daemon=false
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Set up JDK 21
1717
uses: actions/setup-java@v4
1818
with:

.github/workflows/kjs-yarn-update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
update_kjs_yarn_lock:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
if: github.event_name == 'pull_request'
1919
with:
2020
# Checkout source branch directly, without merging base into it
2121
ref: ${{ github.event.pull_request.head.ref }}
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
if: github.event_name == 'push'
2424
with:
2525
# Checkout source branch directly, without merging base into it

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
os: [ macos-latest ]
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
# release workflow should have access to all tags
2626
fetch-depth: 0
@@ -31,7 +31,7 @@ jobs:
3131
java-version: 21
3232
- name: Status git before
3333
run: git status
34-
- uses: burrunan/gradle-cache-action@v2
34+
- uses: burrunan/gradle-cache-action@v3
3535
with:
3636
gradle-version: wrapper
3737
# Until https://github.com/burrunan/gradle-cache-action/issues/42 is addressed, gradle should be run as a separate step

0 commit comments

Comments
 (0)