diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index f33c26de..8f95e6ec 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -26,14 +26,14 @@ jobs: steps: - uses: actions/checkout@v6 - name: Cache .NET SDK - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.dotnet key: ${{ runner.os }}-dotnet-sdk-${{ hashFiles('global.json') }} restore-keys: | ${{ runner.os }}-dotnet-sdk- - name: Cache NuGet packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('Directory.Packages.props', 'global.json', '.config/dotnet-tools.json') }} diff --git a/.github/workflows/push-main.yml b/.github/workflows/push-main.yml index 998690b4..040d2cb3 100644 --- a/.github/workflows/push-main.yml +++ b/.github/workflows/push-main.yml @@ -24,14 +24,14 @@ jobs: steps: - uses: actions/checkout@v6 - name: Cache .NET SDK - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.dotnet key: ${{ runner.os }}-dotnet-sdk-${{ hashFiles('global.json') }} restore-keys: | ${{ runner.os }}-dotnet-sdk- - name: Cache NuGet packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('Directory.Packages.props', 'global.json', '.config/dotnet-tools.json') }}