Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SmartDataLab
public
applications
renovate
Commits
0318efec
Unverified
Commit
0318efec
authored
5 years ago
by
Michael Kriese
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
chore(ci): use cache v2 (#6458)
parent
965b3ca8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/workflows/build.yml
+6
-6
6 additions, 6 deletions
.github/workflows/build.yml
.github/workflows/release-npm.yml
+2
-2
2 additions, 2 deletions
.github/workflows/release-npm.yml
with
8 additions
and
8 deletions
.github/workflows/build.yml
+
6
−
6
View file @
0318efec
...
@@ -76,7 +76,7 @@ jobs:
...
@@ -76,7 +76,7 @@ jobs:
-
name
:
Cache Yarn packages
-
name
:
Cache Yarn packages
id
:
yarn_cache_packages
id
:
yarn_cache_packages
uses
:
actions/cache@v
1
uses
:
actions/cache@v
2
with
:
with
:
path
:
${{ env.YARN_CACHE_FOLDER }}
path
:
${{ env.YARN_CACHE_FOLDER }}
key
:
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
key
:
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
...
@@ -84,7 +84,7 @@ jobs:
...
@@ -84,7 +84,7 @@ jobs:
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-
-
name
:
Cache node_modules
-
name
:
Cache node_modules
uses
:
actions/cache@v
1
uses
:
actions/cache@v
2
with
:
with
:
path
:
node_modules
path
:
node_modules
key
:
${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
key
:
${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
...
@@ -149,7 +149,7 @@ jobs:
...
@@ -149,7 +149,7 @@ jobs:
-
name
:
Cache Yarn packages
-
name
:
Cache Yarn packages
id
:
yarn_cache_packages
id
:
yarn_cache_packages
uses
:
actions/cache@v
1
uses
:
actions/cache@v
2
with
:
with
:
path
:
${{ env.YARN_CACHE_FOLDER }}
path
:
${{ env.YARN_CACHE_FOLDER }}
key
:
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
key
:
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
...
@@ -157,7 +157,7 @@ jobs:
...
@@ -157,7 +157,7 @@ jobs:
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-
-
name
:
Cache node_modules
-
name
:
Cache node_modules
uses
:
actions/cache@v
1
uses
:
actions/cache@v
2
with
:
with
:
path
:
node_modules
path
:
node_modules
key
:
${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
key
:
${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
...
@@ -210,13 +210,13 @@ jobs:
...
@@ -210,13 +210,13 @@ jobs:
fetch-depth
:
0
fetch-depth
:
0
-
name
:
Cache Yarn packages
-
name
:
Cache Yarn packages
uses
:
actions/cache@v
1
uses
:
actions/cache@v
2
with
:
with
:
path
:
${{ env.YARN_CACHE_FOLDER }}
path
:
${{ env.YARN_CACHE_FOLDER }}
key
:
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
key
:
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
-
name
:
Cache node_modules
-
name
:
Cache node_modules
uses
:
actions/cache@v
1
uses
:
actions/cache@v
2
with
:
with
:
path
:
node_modules
path
:
node_modules
key
:
${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
key
:
${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
...
...
This diff is collapsed.
Click to expand it.
.github/workflows/release-npm.yml
+
2
−
2
View file @
0318efec
...
@@ -35,13 +35,13 @@ jobs:
...
@@ -35,13 +35,13 @@ jobs:
-
name
:
Cache Yarn packages
-
name
:
Cache Yarn packages
id
:
yarn_cache_packages
id
:
yarn_cache_packages
uses
:
actions/cache@v
1
uses
:
actions/cache@v
2
with
:
with
:
path
:
${{ env.YARN_CACHE_FOLDER }}
path
:
${{ env.YARN_CACHE_FOLDER }}
key
:
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
key
:
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
-
name
:
Cache node_modules
-
name
:
Cache node_modules
uses
:
actions/cache@v
1
uses
:
actions/cache@v
2
with
:
with
:
path
:
node_modules
path
:
node_modules
key
:
${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
key
:
${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment