1
0
Fork 0
mirror of https://code.forgejo.org/actions/checkout.git synced 2025-04-29 22:52:59 +02:00

Update NPM dependencies (#1703)

* Update dependencies manually
* Format files
* Update licenses
This commit is contained in:
Cory Miller 2024-04-24 12:04:10 -04:00 committed by GitHub
parent 0ad4b8fada
commit 9c1e94e0ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
50 changed files with 33279 additions and 23501 deletions

View file

@ -6,7 +6,7 @@ import * as workflowContextHelper from './workflow-context-helper'
import {IGitSourceSettings} from './git-source-settings'
export async function getInputs(): Promise<IGitSourceSettings> {
const result = ({} as unknown) as IGitSourceSettings
const result = {} as unknown as IGitSourceSettings
// GitHub workspace
let githubWorkspacePath = process.env['GITHUB_WORKSPACE']
@ -150,7 +150,8 @@ export async function getInputs(): Promise<IGitSourceSettings> {
(core.getInput('persist-credentials') || 'false').toUpperCase() === 'TRUE'
// Workflow organization ID
result.workflowOrganizationId = await workflowContextHelper.getOrganizationId()
result.workflowOrganizationId =
await workflowContextHelper.getOrganizationId()
// Set safe.directory in git global config.
result.setSafeDirectory =