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

9 files changed

+16630
-9382
lines changed

Diff for: __tests__/dependency-graph.test.ts

+1-2
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
})

Diff for: action.yml

+1-1
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'

Diff for: dist/index.js

+15,255-8,578
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/licenses.txt

+104-48
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)