From 71feb1c0b205b62f94dd4eae1254a7a5a9a9202e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 02:48:56 +0000 Subject: [PATCH] Update actions/cache action to v5 --- .github/workflows/main.yml | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7140f5b..9331b15 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,7 +32,7 @@ jobs: - name: Checkout uses: actions/checkout@v6 - name: NuGet cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: key: ${{ runner.os }}.nuget.${{ hashFiles('**/*.fsproj') }} path: ${{ env.NUGET_PACKAGES }} @@ -63,7 +63,7 @@ jobs: - name: Set up .NET SDK uses: actions/setup-dotnet@v5 - name: NuGet cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: key: ${{ runner.os }}.nuget.${{ hashFiles('**/*.fsproj') }} path: ${{ env.NUGET_PACKAGES }} @@ -83,7 +83,7 @@ jobs: - name: Set up .NET SDK uses: actions/setup-dotnet@v5 - name: NuGet cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: key: ${{ runner.os }}.nuget.${{ hashFiles('**/*.fsproj') }} path: ${{ env.NUGET_PACKAGES }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3a8a887..f6a81ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: with: dotnet-version: 10.0.x - name: NuGet cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: key: ${{ runner.os }}.nuget.${{ hashFiles('**/*.fsproj') }} path: ${{ env.NUGET_PACKAGES }}