diff --git a/.github/workflows/check-version.yaml b/.github/workflows/check-version.yaml index 88b4c07..114fe7a 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 b8612fb..fec3c65 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 3237819..f9065a2 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') }}