diff --git a/.github/workflows/automation-tests.yml b/.github/workflows/automation-tests.yml index 97572ad25..5c40edd58 100644 --- a/.github/workflows/automation-tests.yml +++ b/.github/workflows/automation-tests.yml @@ -24,7 +24,7 @@ jobs: with: node-version: '18' - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: | '**/node_modules' diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 54b623518..998b8387c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: node-version: '18' - name: NodeModules Cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: '**/node_modules' key: node_modules-${{ hashFiles('**/yarn.lock') }} @@ -42,7 +42,7 @@ jobs: dotnet-version: '8.0.x' - name: Nuget Cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -112,7 +112,7 @@ jobs: dotnet-version: '5.0.x' - name: Nuget Cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index f068794be..d142c46c8 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -17,7 +17,7 @@ # fetch-depth: 0 # - name: NodeModules Cache -# uses: actions/cache@v2 +# uses: actions/cache@v4 # with: # path: '**/node_modules' # key: node_modules-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index ea65cfaa6..5a0e0a46d 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -20,7 +20,7 @@ jobs: node-version: '18' - name: NodeModules Cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: '**/node_modules' key: node_modules-${{ hashFiles('**/yarn.lock') }} @@ -41,7 +41,7 @@ jobs: dotnet-version: '8.0.x' - name: Nuget Cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -101,7 +101,7 @@ jobs: dotnet-version: '8.0.x' - name: Nuget Cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}