From 3ae70c243b6b5d272453f634004ad3fda0e59da7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 26 May 2024 07:55:24 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .github/workflows/macos.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 1492677..836d3ad 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -15,17 +15,17 @@ jobs: steps: - uses: actions/checkout@v3 - name: Cache gem - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /Library/Ruby/Gems key: ${{ runner.os }}-gem-${{ hashFiles('install.sh') }} - name: Cache homebrew - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /Users/runner/Library/Caches/Homebrew key: ${{ runner.os }}-homebrew-${{ hashFiles('install.sh', 'roles/*/tasks/homebrew.yml') }} - name: Cache asdf - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /Users/runner/.asdf key: ${{ runner.os }}-asdf-${{ hashFiles('install.sh') }} @@ -40,17 +40,17 @@ jobs: steps: - uses: actions/checkout@v3 - name: Cache gem - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /Library/Ruby/Gems key: ${{ runner.os }}-gem-${{ hashFiles('install.sh') }} - name: Cache homebrew - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /Users/runner/Library/Caches/Homebrew key: ${{ runner.os }}-homebrew-${{ hashFiles('install.sh') }} - name: Cache asdf - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /Users/runner/.asdf key: ${{ runner.os }}-asdf-${{ hashFiles('install.sh') }}