From 25371da4a81b00e52a155eb023888bbcdfdec760 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 17:08:54 +0000 Subject: [PATCH] chore(deps): update all github actions --- .github/workflows/build_and_test.yml | 10 +++++----- .github/workflows/release.yml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index e0cef7b..f96d13c 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -17,12 +17,12 @@ jobs: CI: true steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Get Kotlin version id: get-kotlin-version run: | echo "version=$(cat gradle/libs.versions.toml | grep -m1 kotlin | cut -d'=' -f2 - | tr -d ' "')" >> $GITHUB_OUTPUT - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: key: konan-${{ runner.os }}-${{ steps.get-kotlin-version.outputs.version }} path: ~/.konan @@ -31,7 +31,7 @@ jobs: with: distribution: temurin java-version: 21 - - uses: gradle/actions/setup-gradle@v5 + - uses: gradle/actions/setup-gradle@v6 name: Setup Gradle with: gradle-version: wrapper @@ -41,12 +41,12 @@ jobs: run: ./gradlew check build -x detekt -Pdetekt.multiplatform.disabled=true --scan - name: Upload test reports if: ${{ failure() }} # runs only if previous step has failed, the entire workflow will still be marked as failed - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: gradle-test-report path: '**/build/reports/' - name: Code coverage report - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7bb4ea3..1373110 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,14 +17,14 @@ jobs: name: Build and publish release runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Get Kotlin version id: get-kotlin-version run: | echo "version=$(cat gradle/libs.versions.toml | grep -m1 kotlin | cut -d'=' -f2 - | tr -d ' "')" >> $GITHUB_OUTPUT - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: key: konan-${{ runner.os }}-${{ steps.get-kotlin-version.outputs.version }} path: ~/.konan @@ -33,7 +33,7 @@ jobs: with: distribution: temurin java-version: 21 - - uses: gradle/actions/setup-gradle@v5 + - uses: gradle/actions/setup-gradle@v6 with: gradle-version: wrapper cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}