From 48d210c300b872f226089af4367a2412e8f8217d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 20:48:12 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/ci-linux.yml | 4 ++-- .github/workflows/ci-macos.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 4c4a7b4..46122c9 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -19,13 +19,13 @@ jobs: uses: actions/checkout@v3.6.0 - name: Restore APT cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v4.0.1 with: path: /var/cache/apt key: ${{ runner.os }}-apt - name: Restore cached SPM dependencies - uses: actions/cache@v3.3.1 + uses: actions/cache@v4.0.1 with: path: .build key: swiftpm-${{ runner.os }}-${{ inputs.swift-version }}-${{ hashFiles('Package.swift') }} diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 20dafda..5d83278 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -18,7 +18,7 @@ jobs: - name: Select Xcode ${{ matrix.xcode }} run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app - name: Restore cached Homebrew dependencies - uses: actions/cache@v3.3.1 + uses: actions/cache@v4.0.1 with: path: | ~/Library/Caches/Homebrew/assimp--* @@ -26,7 +26,7 @@ jobs: key: ${{ runner.os }}-brew-assimp-${{ hashFiles('.github/brew-formulae') }} restore-keys: ${{ runner.os }}-brew-assimp- - name: Restore cached SPM dependencies - uses: actions/cache@v3.3.1 + uses: actions/cache@v4.0.1 with: path: | .build/repositories