Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
|
a9ee7487c9 | ||
|
305373e8f3 | ||
|
04bf3d439a |
5 changed files with 10 additions and 6 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,2 +1,6 @@
|
|||
__pycache__
|
||||
.python-version
|
||||
|
||||
node_modules
|
||||
|
||||
.DS_Store
|
||||
|
|
2
dist/index.js
vendored
2
dist/index.js
vendored
|
@ -965,7 +965,7 @@ async function run() {
|
|||
core.debug(`src: ${src}`);
|
||||
|
||||
// Setup Python from the tool cache
|
||||
setupPython("3.8.0", "x64");
|
||||
setupPython("3.8.x", "x64");
|
||||
|
||||
// Install requirements
|
||||
await exec.exec("pip", [
|
||||
|
|
4
dist/src/requirements.txt
vendored
4
dist/src/requirements.txt
vendored
|
@ -1,2 +1,2 @@
|
|||
GitPython==3.0.5
|
||||
PyGithub==1.44.1
|
||||
GitPython==3.0.8
|
||||
PyGithub==1.46
|
||||
|
|
2
index.js
2
index.js
|
@ -10,7 +10,7 @@ async function run() {
|
|||
core.debug(`src: ${src}`);
|
||||
|
||||
// Setup Python from the tool cache
|
||||
setupPython("3.8.0", "x64");
|
||||
setupPython("3.8.x", "x64");
|
||||
|
||||
// Install requirements
|
||||
await exec.exec("pip", [
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
GitPython==3.0.5
|
||||
PyGithub==1.44.1
|
||||
GitPython==3.0.8
|
||||
PyGithub==1.46
|
||||
|
|
Loading…
Reference in a new issue