From 03bc3377a30890deec68534ad09061c4a7b40134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Wed, 24 Jun 2026 12:15:55 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v6 --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ce764ce2d..7a7cff063 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: - name: Restore cache id: cache-go-modules if: github.event_name == 'pull_request' - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/go/pkg/mod key: ${{ runner.os }}-${{ github.ref_name }}-go-modules-${{ hashFiles('**/go.sum') }} @@ -68,7 +68,7 @@ jobs: - name: Restore cache id: cache-go-modules if: github.event_name == 'pull_request' - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ~/go/pkg/mod key: ${{ runner.os }}-${{ github.ref_name }}-go-modules-${{ hashFiles('**/go.sum') }} @@ -306,7 +306,7 @@ jobs: cache: false - name: Restore cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/.cache/go-build @@ -348,7 +348,7 @@ jobs: - name: Cache Go if: github.event_name != 'pull_request' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cache/go-build @@ -359,7 +359,7 @@ jobs: - name: Restore cache if: github.event_name == 'pull_request' - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ~/.cache/go-build