From 06f5470fa747d882fff39c1cfc9138198f2b5803 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 19:36:58 +0000 Subject: [PATCH] chore(deps): update github actions --- .github/workflows/checks.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index f994082..bb94ff0 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -12,12 +12,12 @@ jobs: run-checks: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: jdx/mise-action@v4 - name: get mise cache directory shell: bash run: echo "MISE_CACHE_PATH=$(mise config show.cache.dir 2>/dev/null || echo ~/.local/cache/mise)" >> $GITHUB_ENV - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ${{ env.MISE_CACHE_PATH }} key: ${{ runner.os }}-mise-cache-${{ hashFiles('.mise/**') }} @@ -25,7 +25,7 @@ jobs: - name: get pnpm store directory shell: bash run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ${{ env.STORE_PATH }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}