mirror of
https://github.com/Radarr/Radarr
synced 2026-01-25 17:01:42 +01:00
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:
commit
95c6244f8f
1 changed files with 4 additions and 4 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
|
@ -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') }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue