From 1850eabd80938c1604e3affecea3bcbf4d4c4571 Mon Sep 17 00:00:00 2001 From: Winford Date: Sun, 25 May 2025 06:11:02 +0000 Subject: [PATCH] Update workflows to use current actions/cache@v4 Necessary update for the cache action used in workflows, since older versions are no longer available. Signed-off-by: Winford --- .github/workflows/build.yml | 4 ++-- .github/workflows/publish.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index beea08c6ce..a98fddf0d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - uses: actions/cache@v1 + - uses: actions/cache@v4 id: gem-cache with: path: /home/runner/.local/share/gem @@ -41,7 +41,7 @@ jobs: if: steps.cache.outputs.gem-cache-hit != 'true' run: gem install bundler --user-install - - uses: actions/cache@v1 + - uses: actions/cache@v4 id: bundler-cache with: path: /home/runner/.local/vendor/bundle diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e7374cced2..3b452b047b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,7 +28,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - uses: actions/cache@v1 + - uses: actions/cache@v4 id: gem-cache with: path: /home/runner/.local/share/gem @@ -38,7 +38,7 @@ jobs: if: steps.cache.outputs.gem-cache-hit != 'true' run: gem install bundler --user-install - - uses: actions/cache@v1 + - uses: actions/cache@v4 id: bundler-cache with: path: /home/runner/.local/vendor/bundle