mirror of
https://github.com/actions/toolkit.git
synced 2026-08-07 00:00:18 +02:00
Fix v1 cache service to only check ACTIONS_CACHE_URL
Co-authored-by: Link- <[email protected]>
This commit is contained in:
co-authored by
Link-
parent
89397db14b
commit
bd54a2413a
+4
-4
@@ -22,9 +22,9 @@ describe('isFeatureAvailable', () => {
|
||||
expect(cache.isFeatureAvailable()).toBe(true)
|
||||
})
|
||||
|
||||
test('returns true for cache service v1 when ACTIONS_RESULTS_URL is set', () => {
|
||||
test('returns false for cache service v1 when only ACTIONS_RESULTS_URL is set', () => {
|
||||
process.env['ACTIONS_RESULTS_URL'] = 'http://results.com'
|
||||
expect(cache.isFeatureAvailable()).toBe(true)
|
||||
expect(cache.isFeatureAvailable()).toBe(false)
|
||||
})
|
||||
|
||||
test('returns true for cache service v1 when both URLs are set', () => {
|
||||
@@ -61,9 +61,9 @@ describe('isFeatureAvailable', () => {
|
||||
expect(cache.isFeatureAvailable()).toBe(true)
|
||||
})
|
||||
|
||||
test('returns true for GHES with ACTIONS_RESULTS_URL', () => {
|
||||
test('returns false for GHES with only ACTIONS_RESULTS_URL', () => {
|
||||
process.env['GITHUB_SERVER_URL'] = 'https://my-enterprise.github.com'
|
||||
process.env['ACTIONS_RESULTS_URL'] = 'http://results.com'
|
||||
expect(cache.isFeatureAvailable()).toBe(true)
|
||||
expect(cache.isFeatureAvailable()).toBe(false)
|
||||
})
|
||||
})
|
||||
|
||||
Vendored
+2
-4
@@ -67,10 +67,8 @@ export function isFeatureAvailable(): boolean {
|
||||
return !!process.env['ACTIONS_RESULTS_URL']
|
||||
case 'v1':
|
||||
default:
|
||||
// For v1, we need either ACTIONS_CACHE_URL or ACTIONS_RESULTS_URL
|
||||
return !!(
|
||||
process.env['ACTIONS_CACHE_URL'] || process.env['ACTIONS_RESULTS_URL']
|
||||
)
|
||||
// For v1, we only need ACTIONS_CACHE_URL
|
||||
return !!process.env['ACTIONS_CACHE_URL']
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user