1
0
Fork 0

Merge branch 'main' into takost/addfetchmethod

takost/addfetchmethod
Tatyana Kostromskaya 2023-09-28 11:07:01 +00:00
commit c25ba9aa99
12 changed files with 337 additions and 449 deletions

View File

@ -24,14 +24,14 @@ jobs:
# Initializes the CodeQL tools for scanning. # Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL - name: Initialize CodeQL
uses: github/codeql-action/init@v1 uses: github/codeql-action/init@v2
with: with:
languages: javascript languages: javascript
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below) # If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild - name: Autobuild
uses: github/codeql-action/autobuild@v1 uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1 uses: github/codeql-action/analyze@v2

2
packages/cache/package-lock.json generated vendored
View File

@ -17,7 +17,7 @@
"@azure/abort-controller": "^1.1.0", "@azure/abort-controller": "^1.1.0",
"@azure/ms-rest-js": "^2.6.0", "@azure/ms-rest-js": "^2.6.0",
"@azure/storage-blob": "^12.13.0", "@azure/storage-blob": "^12.13.0",
"semver": "^6.1.0", "semver": "^6.3.1",
"uuid": "^3.3.3" "uuid": "^3.3.3"
}, },
"devDependencies": { "devDependencies": {

View File

@ -45,7 +45,7 @@
"@azure/abort-controller": "^1.1.0", "@azure/abort-controller": "^1.1.0",
"@azure/ms-rest-js": "^2.6.0", "@azure/ms-rest-js": "^2.6.0",
"@azure/storage-blob": "^12.13.0", "@azure/storage-blob": "^12.13.0",
"semver": "^6.1.0", "semver": "^6.3.1",
"uuid": "^3.3.3" "uuid": "^3.3.3"
}, },
"devDependencies": { "devDependencies": {

View File

@ -1,5 +1,8 @@
# @actions/core Releases # @actions/core Releases
### 1.10.1
- Fix error message reference in oidc utils [#1511](https://github.com/actions/toolkit/pull/1511)
### 1.10.0 ### 1.10.0
- `saveState` and `setOutput` now use environment files if available [#1178](https://github.com/actions/toolkit/pull/1178) - `saveState` and `setOutput` now use environment files if available [#1178](https://github.com/actions/toolkit/pull/1178)
- `getMultilineInput` now correctly trims whitespace by default [#1185](https://github.com/actions/toolkit/pull/1185) - `getMultilineInput` now correctly trims whitespace by default [#1185](https://github.com/actions/toolkit/pull/1185)

View File

@ -6,7 +6,7 @@
"packages": { "packages": {
"": { "": {
"name": "@actions/core", "name": "@actions/core",
"version": "1.10.0", "version": "1.10.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/http-client": "^2.0.1", "@actions/http-client": "^2.0.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "@actions/core", "name": "@actions/core",
"version": "1.10.0", "version": "1.10.1",
"description": "Actions core lib", "description": "Actions core lib",
"keywords": [ "keywords": [
"github", "github",

View File

@ -52,7 +52,7 @@ export class OidcClient {
throw new Error( throw new Error(
`Failed to get ID Token. \n `Failed to get ID Token. \n
Error Code : ${error.statusCode}\n Error Code : ${error.statusCode}\n
Error Message: ${error.result.message}` Error Message: ${error.message}`
) )
}) })

View File

@ -1,5 +1,6 @@
import * as http from 'http' import * as http from 'http'
import * as https from 'https' import * as https from 'https'
import proxy from 'proxy'
import { ProxyServer, createProxy } from "proxy"; import { ProxyServer, createProxy } from "proxy";
import { ProxyAgent, fetch as undiciFetch } from "undici"; import { ProxyAgent, fetch as undiciFetch } from "undici";
@ -8,7 +9,7 @@ const proxyUrl = 'http://127.0.0.1:8081'
const originalProxyUrl = process.env['https_proxy'] const originalProxyUrl = process.env['https_proxy']
process.env['https_proxy'] = proxyUrl process.env['https_proxy'] = proxyUrl
// eslint-disable-next-line import/first // eslint-disable-next-line import/first
import { getOctokit } from '../src/github' import {getOctokit} from '../src/github'
describe('@actions/github', () => { describe('@actions/github', () => {
let proxyConnects: string[] let proxyConnects: string[]
@ -17,13 +18,12 @@ describe('@actions/github', () => {
beforeAll(async () => { beforeAll(async () => {
// Start proxy server // Start proxy server
proxyServer = createProxy() proxyServer = proxy()
await new Promise<void>(resolve => { await new Promise<void>(resolve => {
const port = Number(proxyUrl.split(':')[2]) const port = Number(proxyUrl.split(':')[2])
proxyServer.listen(port, () => resolve()) proxyServer.listen(port, () => resolve())
}) })
proxyServer.on('connect', req => { proxyServer.on('connect', req => {
console.log("Connect to proxy server")
proxyConnects.push(req.url ?? '') proxyConnects.push(req.url ?? '')
}) })
}) })
@ -102,7 +102,7 @@ describe('@actions/github', () => {
const repository = await octokit.graphql( const repository = await octokit.graphql(
'{repository(owner:"actions", name:"toolkit"){name}}' '{repository(owner:"actions", name:"toolkit"){name}}'
) )
expect(repository).toEqual({ repository: { name: 'toolkit' } }) expect(repository).toEqual({repository: {name: 'toolkit'}})
expect(proxyConnects).toEqual(['api.github.com:443']) expect(proxyConnects).toEqual(['api.github.com:443'])
}) })

View File

@ -1,5 +1,5 @@
import * as http from 'http' import * as http from 'http'
import { createProxy } from 'proxy' import proxy from 'proxy'
import {getOctokit} from '../src/github' import {getOctokit} from '../src/github'
import {GitHub, getOctokitOptions} from '../src/utils' import {GitHub, getOctokitOptions} from '../src/utils'
@ -12,10 +12,10 @@ describe('@actions/github', () => {
beforeAll(async () => { beforeAll(async () => {
// Start proxy server // Start proxy server
proxyServer = createProxy() proxyServer = proxy()
await new Promise(resolve => { await new Promise<void>(resolve => {
const port = Number(proxyUrl.split(':')[2]) const port = Number(proxyUrl.split(':')[2])
proxyServer.listen(port, () => resolve(null)) proxyServer.listen(port, () => resolve())
}) })
proxyServer.on('connect', req => { proxyServer.on('connect', req => {
proxyConnects.push(req.url ?? '') proxyConnects.push(req.url ?? '')
@ -29,8 +29,8 @@ describe('@actions/github', () => {
afterAll(async () => { afterAll(async () => {
// Stop proxy server // Stop proxy server
await new Promise(resolve => { await new Promise<void>(resolve => {
proxyServer.once('close', () => resolve(null)) proxyServer.once('close', () => resolve())
proxyServer.close() proxyServer.close()
}) })

View File

@ -1,4 +1,4 @@
declare module 'proxy1' { declare module 'proxy' {
import * as http from 'http' import * as http from 'http'
function internal(): http.Server function internal(): http.Server
export = internal export = internal

File diff suppressed because it is too large Load Diff

View File

@ -38,14 +38,12 @@
"url": "https://github.com/actions/toolkit/issues" "url": "https://github.com/actions/toolkit/issues"
}, },
"dependencies": { "dependencies": {
"@actions/http-client": "^2.1.1", "@actions/http-client": "^2.0.1",
"@octokit/core": "^4.2.4", "@octokit/core": "^3.6.0",
"@octokit/plugin-paginate-rest": "^6.1.2", "@octokit/plugin-paginate-rest": "^2.17.0",
"@octokit/plugin-rest-endpoint-methods": "^7.2.3", "@octokit/plugin-rest-endpoint-methods": "^5.13.0"
"undici": "^5.25.1"
}, },
"devDependencies": { "devDependencies": {
"@types/proxy": "^1.0.1", "proxy": "^1.0.2"
"proxy": "^2.1.1"
} }
} }