diff --git a/dist/setup/index.js b/dist/setup/index.js index 1fa317909..e718a6142 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -69590,7 +69590,7 @@ const exec = __importStar(__nccwpck_require__(1514)); const utils_1 = __nccwpck_require__(1314); const TOKEN = core.getInput('token'); const AUTH = !TOKEN ? undefined : `token ${TOKEN}`; -const MANIFEST_REPO_OWNER = 'actions'; +const MANIFEST_REPO_OWNER = 'Deca-Technologies'; const MANIFEST_REPO_NAME = 'python-versions'; const MANIFEST_REPO_BRANCH = 'main'; exports.MANIFEST_URL = `https://raw.githubusercontent.com/${MANIFEST_REPO_OWNER}/${MANIFEST_REPO_NAME}/${MANIFEST_REPO_BRANCH}/versions-manifest.json`; diff --git a/src/install-python.ts b/src/install-python.ts index 2af61291d..232c4b731 100644 --- a/src/install-python.ts +++ b/src/install-python.ts @@ -2,12 +2,12 @@ import * as path from 'path'; import * as core from '@actions/core'; import * as tc from '@actions/tool-cache'; import * as exec from '@actions/exec'; -import {ExecOptions} from '@actions/exec/lib/interfaces'; -import {IS_WINDOWS, IS_LINUX} from './utils'; +import { ExecOptions } from '@actions/exec/lib/interfaces'; +import { IS_WINDOWS, IS_LINUX } from './utils'; const TOKEN = core.getInput('token'); const AUTH = !TOKEN ? undefined : `token ${TOKEN}`; -const MANIFEST_REPO_OWNER = 'actions'; +const MANIFEST_REPO_OWNER = 'Deca-Technologies'; const MANIFEST_REPO_NAME = 'python-versions'; const MANIFEST_REPO_BRANCH = 'main'; export const MANIFEST_URL = `https://raw.githubusercontent.com/${MANIFEST_REPO_OWNER}/${MANIFEST_REPO_NAME}/${MANIFEST_REPO_BRANCH}/versions-manifest.json`; @@ -48,7 +48,7 @@ async function installPython(workingDirectory: string) { cwd: workingDirectory, env: { ...process.env, - ...(IS_LINUX && {LD_LIBRARY_PATH: path.join(workingDirectory, 'lib')}) + ...(IS_LINUX && { LD_LIBRARY_PATH: path.join(workingDirectory, 'lib') }) }, silent: true, listeners: {