Skip to content

Commit d2762cf

Browse files
chore(deps): update all github actions
1 parent ac44d7e commit d2762cf

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/build_and_test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
statuses: write
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- name: Set up JDK 11
30-
uses: actions/setup-java@v4
30+
uses: actions/setup-java@v5
3131
with:
3232
java-version: 11
3333
distribution: temurin
@@ -66,7 +66,7 @@ jobs:
6666
# into a separate job (or, otherwise, we'd need to upload the content
6767
# of the whole `.git` folder as an artifact).
6868
- name: JUnit Tests (dorny/test-reporter@v1)
69-
uses: dorny/test-reporter@v1
69+
uses: dorny/test-reporter@v2
7070
if: ${{ always() }}
7171
with:
7272
name: JUnit Tests (${{ runner.os }}, dorny/test-reporter@v1)
@@ -96,7 +96,7 @@ jobs:
9696
path: '**/build/reports/'
9797
- name: Code coverage report
9898
if: ${{ runner.os == 'Linux' }}
99-
uses: codecov/codecov-action@v4
99+
uses: codecov/codecov-action@v5
100100
with:
101101
flags: unittests
102102
fail_ci_if_error: false # optional (default = false)
@@ -116,7 +116,7 @@ jobs:
116116
pull-requests: write
117117

118118
steps:
119-
- uses: actions/download-artifact@v4
119+
- uses: actions/download-artifact@v5
120120
if: ${{ always() }}
121121
with:
122122
name: xml-test-reports-${{ runner.os }}

.github/workflows/detekt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
detekt_check:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- name: Set up JDK 11
14-
uses: actions/setup-java@v4
14+
uses: actions/setup-java@v5
1515
with:
1616
java-version: 11
1717
distribution: temurin

.github/workflows/diktat.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
diktat_check:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- name: Set up JDK 11
14-
uses: actions/setup-java@v4
14+
uses: actions/setup-java@v5
1515
with:
1616
java-version: 11
1717
distribution: temurin

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
os: [ ubuntu-latest, windows-latest, macos-latest ]
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
# release workflow should have access to all tags
2727
fetch-depth: 0
2828
- name: Set up JDK 11
29-
uses: actions/setup-java@v4
29+
uses: actions/setup-java@v5
3030
with:
3131
java-version: 11
3232
distribution: temurin
@@ -79,7 +79,7 @@ jobs:
7979
runs-on: ubuntu-latest
8080
steps:
8181
- name: Download artifact
82-
uses: actions/download-artifact@v4
82+
uses: actions/download-artifact@v5
8383
with:
8484
path: tmpFolder
8585
- name: Create Github Release

0 commit comments

Comments
 (0)