Skip to content

Commit 176bb76

Browse files
committed
fix: Pointing to main of python-versions Deca local
1 parent 60c2db2 commit 176bb76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/setup/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69592,7 +69592,7 @@ const TOKEN = core.getInput('token');
6959269592
const AUTH = !TOKEN ? undefined : `token ${TOKEN}`;
6959369593
const MANIFEST_REPO_OWNER = 'Deca-Technologies';
6959469594
const MANIFEST_REPO_NAME = 'python-versions';
69595-
const MANIFEST_REPO_BRANCH = '225ba42747d0f5e3dbd90ba15b9c7409a4b8c735';
69595+
const MANIFEST_REPO_BRANCH = 'main';
6959669596
exports.MANIFEST_URL = `https://raw.githubusercontent.com/${MANIFEST_REPO_OWNER}/${MANIFEST_REPO_NAME}/${MANIFEST_REPO_BRANCH}/versions-manifest.json`;
6959769597
function findReleaseFromManifest(semanticVersionSpec, architecture, manifest) {
6959869598
return __awaiter(this, void 0, void 0, function* () {

src/install-python.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const TOKEN = core.getInput('token');
99
const AUTH = !TOKEN ? undefined : `token ${TOKEN}`;
1010
const MANIFEST_REPO_OWNER = 'Deca-Technologies';
1111
const MANIFEST_REPO_NAME = 'python-versions';
12-
const MANIFEST_REPO_BRANCH = '225ba42747d0f5e3dbd90ba15b9c7409a4b8c735';
12+
const MANIFEST_REPO_BRANCH = 'main';
1313
export const MANIFEST_URL = `https://raw.githubusercontent.com/${MANIFEST_REPO_OWNER}/${MANIFEST_REPO_NAME}/${MANIFEST_REPO_BRANCH}/versions-manifest.json`;
1414

1515
export async function findReleaseFromManifest(

0 commit comments

Comments
 (0)