Skip to content

Commit fde92ac

Browse files
author
Federico Builes
authored
Merge pull request #611 from actions/fix-https-proxy
Fix proxy failures in 3.1.1
2 parents 9f45b24 + a89dd96 commit fde92ac

File tree

9 files changed

+16630
-9382
lines changed

9 files changed

+16630
-9382
lines changed

__tests__/dependency-graph.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ test('it properly catches RequestError type', async () => {
2424
headRef: 'refs/heads/master'
2525
})
2626
} catch (error) {
27-
const err = error as RequestError
28-
expect(err.status).toBe(401)
27+
expect(error).toBeInstanceOf(RequestError)
2928
}
3029
})

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ inputs:
6262
required: false
6363
default: 120
6464
runs:
65-
using: 'node20'
65+
using: 'node16'
6666
main: 'dist/index.js'

dist/index.js

Lines changed: 15255 additions & 8578 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/licenses.txt

Lines changed: 104 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)