Skip to content

Commit

Permalink
fix python 2 gh env
Browse files Browse the repository at this point in the history
  • Loading branch information
frantuma committed Jun 24, 2023
1 parent 5880083 commit 03a50d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ jobs:
build:

runs-on: ubuntu-latest
container:
image: python:2.7.18-buster

steps:
- uses: actions/checkout@v2
Expand All @@ -18,6 +16,10 @@ jobs:
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Set up Python 2.7
uses: MatteoH2O1999/setup-python@v1
with:
python-version: 2.7
- name: Set up Java 11
uses: actions/setup-java@v1
with:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ jobs:
build:

runs-on: ubuntu-latest
container:
image: python:2.7.18-buster

steps:
- uses: actions/checkout@v2
Expand All @@ -18,6 +16,10 @@ jobs:
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Set up Python 2.7
uses: MatteoH2O1999/setup-python@v1
with:
python-version: 2.7
- name: Set up Java 11
uses: actions/setup-java@v1
with:
Expand Down

0 comments on commit 03a50d5

Please sign in to comment.