From af4c5f3c41db3c9701803018396f96c213d8ceb9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 22:01:17 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/dotnet-mac.yml | 2 +- .github/workflows/dotnet-windows.yml | 2 +- .github/workflows/dotnet.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet-mac.yml b/.github/workflows/dotnet-mac.yml index 14010d603..88300a443 100644 --- a/.github/workflows/dotnet-mac.yml +++ b/.github/workflows/dotnet-mac.yml @@ -27,7 +27,7 @@ jobs: with: dotnet-version: 8.0.x - name: Cache NuGet - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} diff --git a/.github/workflows/dotnet-windows.yml b/.github/workflows/dotnet-windows.yml index 0e88eb414..16299a2f6 100644 --- a/.github/workflows/dotnet-windows.yml +++ b/.github/workflows/dotnet-windows.yml @@ -29,7 +29,7 @@ jobs: with: dotnet-version: 8.0.x - name: Cache NuGet - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 158da1d42..f5ca2fee8 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -45,7 +45,7 @@ jobs: with: dotnet-version: 8.0.x - name: Cache NuGet - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}