Skip to content

Commit 63c5b0e

Browse files
chore(deps): update all github actions (#564)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9110c0c commit 63c5b0e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# It should correctly expand `~` on every OS.
4444
path: ~/.konan
4545
key: ${{ runner.os }}-gradle-konan-${{ env.KOTLIN_VERSION }}
46-
- uses: gradle/gradle-build-action@v2
46+
- uses: gradle/gradle-build-action@v3
4747
with:
4848
gradle-version: wrapper
4949
# The `--continue` flag is necessary so that Gradle keeps going after the 1st test failure.
@@ -96,7 +96,7 @@ jobs:
9696
path: '**/build/reports/'
9797
- name: Code coverage report
9898
if: ${{ runner.os == 'Linux' }}
99-
uses: codecov/codecov-action@v3
99+
uses: codecov/codecov-action@v4
100100
with:
101101
flags: unittests
102102
fail_ci_if_error: false # optional (default = false)

.github/workflows/detekt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
java-version: 11
1717
distribution: temurin
18-
- uses: gradle/gradle-build-action@v2
18+
- uses: gradle/gradle-build-action@v3
1919
with:
2020
gradle-version: wrapper
2121
arguments: |

.github/workflows/diktat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
java-version: 11
1717
distribution: temurin
18-
- uses: gradle/gradle-build-action@v2
18+
- uses: gradle/gradle-build-action@v3
1919
with:
2020
gradle-version: wrapper
2121
arguments: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: gradle release from tag
3636
# if workflow is triggered after push of a tag, deploy full release
3737
if: ${{ startsWith(github.ref, 'refs/tags/') }}
38-
uses: gradle/gradle-build-action@v2
38+
uses: gradle/gradle-build-action@v3
3939
with:
4040
gradle-version: wrapper
4141
arguments: |
@@ -49,7 +49,7 @@ jobs:
4949
- name: gradle snapshot from branch
5050
# if workflow is triggered after push to a branch, deploy snapshot
5151
if: ${{ startsWith(github.ref, 'refs/heads/') }}
52-
uses: gradle/gradle-build-action@v2
52+
uses: gradle/gradle-build-action@v3
5353
with:
5454
gradle-version: wrapper
5555
arguments: |

0 commit comments

Comments
 (0)