From 5fbabf54925626f629e2c8bd51b420ab21686052 Mon Sep 17 00:00:00 2001 From: Tim Holm Date: Thu, 6 Mar 2025 11:39:44 +1100 Subject: [PATCH] ci: Update cache actions to v4. --- .github/workflows/check-version.yaml | 2 +- .github/workflows/publish.yaml | 2 +- .github/workflows/test.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-version.yaml b/.github/workflows/check-version.yaml index 88b4c07a..114fe7a9 100644 --- a/.github/workflows/check-version.yaml +++ b/.github/workflows/check-version.yaml @@ -12,7 +12,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Cache Yarn Cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: 'node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }} diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index b8612fb8..fec3c65d 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -15,7 +15,7 @@ jobs: token: ${{ secrets.NITRIC_BOT_TOKEN }} - name: Cache Dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: 'node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }} diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 32378199..f9065a2c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,7 +13,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Cache Yarn Cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: 'node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}