mirror of
https://github.com/gradle/actions
synced 2024-11-23 18:02:13 +00:00
[bot] Update dist directory
This commit is contained in:
parent
e6688f31b8
commit
40a3605597
8 changed files with 12 additions and 8 deletions
3
dist/dependency-submission/main/index.js
vendored
3
dist/dependency-submission/main/index.js
vendored
|
@ -143348,7 +143348,8 @@ function getCacheKeyBase(cacheName, cacheProtocolVersion) {
|
|||
exports.getCacheKeyBase = getCacheKeyBase;
|
||||
function getCacheKeyEnvironment() {
|
||||
const runnerOs = process.env['RUNNER_OS'] || '';
|
||||
return process.env[CACHE_KEY_OS_VAR] || runnerOs;
|
||||
const runnerArch = process.env['RUNNER_ARCH'] || '';
|
||||
return process.env[CACHE_KEY_OS_VAR] || `${runnerOs}-${runnerArch}`;
|
||||
}
|
||||
function getCacheKeyJob() {
|
||||
return process.env[CACHE_KEY_JOB_VAR] || github.context.job;
|
||||
|
|
2
dist/dependency-submission/main/index.js.map
vendored
2
dist/dependency-submission/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
3
dist/dependency-submission/post/index.js
vendored
3
dist/dependency-submission/post/index.js
vendored
|
@ -97297,7 +97297,8 @@ function getCacheKeyBase(cacheName, cacheProtocolVersion) {
|
|||
exports.getCacheKeyBase = getCacheKeyBase;
|
||||
function getCacheKeyEnvironment() {
|
||||
const runnerOs = process.env['RUNNER_OS'] || '';
|
||||
return process.env[CACHE_KEY_OS_VAR] || runnerOs;
|
||||
const runnerArch = process.env['RUNNER_ARCH'] || '';
|
||||
return process.env[CACHE_KEY_OS_VAR] || `${runnerOs}-${runnerArch}`;
|
||||
}
|
||||
function getCacheKeyJob() {
|
||||
return process.env[CACHE_KEY_JOB_VAR] || github.context.job;
|
||||
|
|
2
dist/dependency-submission/post/index.js.map
vendored
2
dist/dependency-submission/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
3
dist/setup-gradle/main/index.js
vendored
3
dist/setup-gradle/main/index.js
vendored
|
@ -143336,7 +143336,8 @@ function getCacheKeyBase(cacheName, cacheProtocolVersion) {
|
|||
exports.getCacheKeyBase = getCacheKeyBase;
|
||||
function getCacheKeyEnvironment() {
|
||||
const runnerOs = process.env['RUNNER_OS'] || '';
|
||||
return process.env[CACHE_KEY_OS_VAR] || runnerOs;
|
||||
const runnerArch = process.env['RUNNER_ARCH'] || '';
|
||||
return process.env[CACHE_KEY_OS_VAR] || `${runnerOs}-${runnerArch}`;
|
||||
}
|
||||
function getCacheKeyJob() {
|
||||
return process.env[CACHE_KEY_JOB_VAR] || github.context.job;
|
||||
|
|
2
dist/setup-gradle/main/index.js.map
vendored
2
dist/setup-gradle/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
3
dist/setup-gradle/post/index.js
vendored
3
dist/setup-gradle/post/index.js
vendored
|
@ -143328,7 +143328,8 @@ function getCacheKeyBase(cacheName, cacheProtocolVersion) {
|
|||
exports.getCacheKeyBase = getCacheKeyBase;
|
||||
function getCacheKeyEnvironment() {
|
||||
const runnerOs = process.env['RUNNER_OS'] || '';
|
||||
return process.env[CACHE_KEY_OS_VAR] || runnerOs;
|
||||
const runnerArch = process.env['RUNNER_ARCH'] || '';
|
||||
return process.env[CACHE_KEY_OS_VAR] || `${runnerOs}-${runnerArch}`;
|
||||
}
|
||||
function getCacheKeyJob() {
|
||||
return process.env[CACHE_KEY_JOB_VAR] || github.context.job;
|
||||
|
|
2
dist/setup-gradle/post/index.js.map
vendored
2
dist/setup-gradle/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue