Skip to content

Commit

Permalink
set python to v=3.12 in github actions
Browse files Browse the repository at this point in the history
Signed-off-by: Peeter Piegaze <[email protected]>
  • Loading branch information
ppiegaze committed Jan 20, 2025
1 parent da39821 commit 6af6a74
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/runIntegration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ jobs:
fetch-depth: 0
tags: true
token: ${{ secrets.FLYTE_BOT_PAT }}

- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Log in to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ secrets.FLYTE_BOT_USERNAME }}
password: ${{ secrets.FLYTE_BOT_PAT }}

- name: Iterate through top level directories and build Docker images
env:
ACCESS_TOKEN: ${{ secrets.FLYTE_BOT_PAT }}
Expand Down Expand Up @@ -74,6 +75,9 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Run integration tests
env:
host: ${{ secrets.FLYTE_HOST }}
Expand All @@ -86,4 +90,4 @@ jobs:
--client_id $client_id \
--client_secret $client_secret \
--image_suffix pr-${{ github.event.pull_request.number }} \
--image_hostname ghcr.io/${{ github.repository }}
--image_hostname ghcr.io/${{ github.repository }}

0 comments on commit 6af6a74

Please sign in to comment.