From e0f79a4eb58d0c30abf8122e72d95a094a140d95 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 18:22:12 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/deploy.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2efc412..157c343 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Cache SPM build directory - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: swiftpm with: @@ -66,7 +66,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Cache SPM build directory - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: swiftpm with: @@ -79,7 +79,7 @@ jobs: ${{ runner.os }}-${{ github.job }}- ${{ runner.os }}- - name: Cache DerivedData - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: derived-data with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6251678..f2d53fb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Cache SPM build directory - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .build key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.swift') }}