Skip to content

Commit

Permalink
Update all github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 5, 2024
1 parent 54525fa commit 9a60308
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
# It should correctly expand `~` on every OS.
path: ~/.konan
key: ${{ runner.os }}-gradle-konan-${{ env.KOTLIN_VERSION }}
- uses: gradle/gradle-build-action@v2
- uses: gradle/gradle-build-action@v3
with:
gradle-version: wrapper
# The `--continue` flag is necessary so that Gradle keeps going after the 1st test failure.
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
path: '**/build/reports/'
- name: Code coverage report
if: ${{ runner.os == 'Linux' }}
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
flags: unittests
fail_ci_if_error: false # optional (default = false)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# and modify them (or add more) to build your code if your project
# uses a compiled language

- uses: gradle/gradle-build-action@v2
- uses: gradle/gradle-build-action@v3
with:
gradle-version: wrapper
# The `--continue` flag is necessary so that Gradle keeps going after the 1st test failure.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:
- name: 'Set up Gradle'
id: build
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
gradle-version: wrapper

- name: 'Run snapshot action'
uses: mikepenz/gradle-dependency-submission@v0.9.2
uses: mikepenz/gradle-dependency-submission@v1.0.0
with:
use-gradlew: true
gradle-build-module: |-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
java-version: 11
distribution: temurin
- uses: gradle/gradle-build-action@v2
- uses: gradle/gradle-build-action@v3
with:
gradle-version: wrapper
arguments: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/diktat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
java-version: 11
distribution: temurin
- uses: gradle/gradle-build-action@v2
- uses: gradle/gradle-build-action@v3
with:
gradle-version: wrapper
arguments: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sarif-utils-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: gradle release from tag
# if workflow is triggered after push of a tag, deploy full release
if: ${{ github.ref_type == 'tag' }}
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
gradle-version: wrapper
arguments: |
Expand All @@ -48,7 +48,7 @@ jobs:
- name: gradle snapshot from branch
# if workflow is triggered after push to a branch, deploy snapshot
if: ${{ github.ref_type == 'branch' }}
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
gradle-version: wrapper
arguments: |
Expand Down

0 comments on commit 9a60308

Please sign in to comment.