Merge pull request #21 from cheir-mneme/dependabot/github_actions/actions/cache-5

ci(deps): bump actions/cache from 4 to 5
This commit is contained in:
Cody Kickertz 2025-12-18 14:14:30 -06:00 committed by GitHub
commit 95c6244f8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,7 +42,7 @@ jobs:
echo "DATE=$(date --rfc-3339=date)" >> "$GITHUB_ENV"
- name: Cache NuGet packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: _cache/nuget
key: nuget-${{ runner.os }}-${{ hashFiles('src/Directory.Packages.props', 'src/**/*.csproj', 'global.json') }}
@ -50,7 +50,7 @@ jobs:
nuget-${{ runner.os }}-
- name: Cache Node modules
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
_cache/node
@ -60,7 +60,7 @@ jobs:
node-${{ runner.os }}-
- name: Cache MSBuild outputs
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: _cache/msbuild
key: msbuild-${{ runner.os }}-${{ hashFiles('src/**/*.cs', 'src/**/*.csproj', 'src/**/*.targets', 'src/**/*.props') }}
@ -69,7 +69,7 @@ jobs:
msbuild-${{ runner.os }}-
- name: Cache Webpack
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: _cache/webpack
key: webpack-${{ runner.os }}-${{ hashFiles('frontend/src/**/*', 'yarn.lock') }}