From 053a085ea831f2de7fdcd7d83dd7fd44b3069b41 Mon Sep 17 00:00:00 2001 From: Paul Hebble Date: Tue, 22 Aug 2023 22:44:44 -0500 Subject: [PATCH] Increment version of actions/cache --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f457cc9d4..144bfdf900 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,22 +32,22 @@ jobs: - name: Install runtime dependencies run: apt-get install -y xvfb - name: Restore cache for _build/tools - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: _build/tools key: build-tools-${{ hashFiles('build', 'build.ps1', 'build.cake') }} - name: Restore cache for _build/cake - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: _build/cake key: build-cake-${{ hashFiles('build.cake') }} - name: Restore cache for _build/lib/nuget - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: _build/lib/nuget key: nuget-oldref-modules-${{ hashFiles('**/packages.config') }}-${{ hashFiles('**/*.csproj') }} - name: Restore cache for ~/.nuget/packages - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.nuget/packages key: nuget-packref-modules-${{ hashFiles('**/packages.config') }}-${{ hashFiles('**/*.csproj') }} @@ -104,22 +104,22 @@ jobs: with: dotnet-version: '5.0.x' - name: Restore cache for _build/tools - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: _build/tools key: build-tools-${{ hashFiles('build', 'build.ps1', 'build.cake') }} - name: Restore cache for _build/cake - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: _build/cake key: build-cake-${{ hashFiles('build.cake') }} - name: Restore cache for _build/lib/nuget - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: _build/lib/nuget key: nuget-oldref-modules-${{ hashFiles('**/packages.config') }}-${{ hashFiles('**/*.csproj') }} - name: Restore cache for ~/.nuget/packages - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.nuget/packages key: nuget-packref-modules-${{ hashFiles('**/packages.config') }}-${{ hashFiles('**/*.csproj') }}