Skip to content

Commit

Permalink
Workaround for upstream issue
Browse files Browse the repository at this point in the history
  • Loading branch information
simonwiles committed Mar 1, 2022
1 parent f8de32b commit c2f62e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/setup-python@v2
- run: pip install virtualenv
- run: python -m pip install virtualenv
- run: make
- name: self test newly built action
uses: ./
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ function addToken(url, token) {

async function main() {
await core.group('install pre-commit', async () => {
await exec.exec('pip', ['install', 'pre-commit']);
await exec.exec('pip', ['freeze', '--local']);
await exec.exec("python", ["-m", "pip", "install", "pre-commit"]);
await exec.exec("python", ["-m", "pip", "freeze", "--local"]);
});

const args = [
Expand Down

0 comments on commit c2f62e9

Please sign in to comment.