From 07638d991219a14ef10732f883f4210b0e095ddb Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Sat, 17 Feb 2024 00:21:41 +0100 Subject: [PATCH] CI: Update actions/cache to v4 --- .github/workflows/lint.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7d3d21d5dd..16c9fc5f6e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -25,7 +25,7 @@ jobs: with: node-version: "18" - name: Restore node_modules cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: ${{ runner.os }}-node-modules-${{ hashFiles('package.json') }} @@ -45,7 +45,7 @@ jobs: with: node-version: "18" - name: Restore node_modules cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: ${{ runner.os }}-node-modules-${{ hashFiles('package.json') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 522f79d628..68bfad0590 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -89,7 +89,7 @@ jobs: bundler-cache: true - name: Restore apt cache id: apt-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /home/runner/apt/cache key: ${{ runner.os }}-apt-${{ matrix.database }} @@ -131,7 +131,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Restore node modules cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: ${{ runner.os }}-yarn-${{ hashFiles('./package.json') }}