From c9933da6758283e384dc734a34c1ee27a38e37d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 15:37:06 +0200 Subject: [PATCH] ci: bump actions/cache from 3 to 4 (#20801) --- .github/workflows/vpm_ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vpm_ci.yml b/.github/workflows/vpm_ci.yml index 6c1effb502..a65a01a7ae 100644 --- a/.github/workflows/vpm_ci.yml +++ b/.github/workflows/vpm_ci.yml @@ -32,7 +32,7 @@ jobs: if: runner.os == 'Windows' run: cd vlang && ./make.bat && ./v doctor - name: Cache V - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: vlang key: ${{ runner.os }}-${{ github.sha }} @@ -62,7 +62,7 @@ jobs: VFLAGS: -cc ${{ matrix.cc }} -d network steps: - name: Restore V cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: vlang key: ${{ runner.os }}-${{ github.sha }}