Skip to content

Commit

Permalink
GitHub workflow files: Updated python version from 3.8 to 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Jul 1, 2024
1 parent f927e73 commit 8fd85a9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check_packaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
python-version: [ "3.10" ]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Python & Poetry Environment
uses: ./.github/actions/prepare_poetry_env
Expand All @@ -36,4 +36,4 @@ jobs:

- name: Check if packaging changed
run: |
[ -z "$(git status --porcelain=v1 -uno 2>/dev/null)" ]
[ -z "$(git status --porcelain=v1 -uno 2>/dev/null)" ]
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests_with_db.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.8 ]
python-version: [ "3.10" ]
runs-on: ubuntu-latest

steps:
Expand All @@ -23,7 +23,7 @@ jobs:
docker-images: true
swap-storage: false

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Python & Poetry Environment
uses: ./.github/actions/prepare_poetry_env
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/integration_tests_without_db.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.8 ]
python-version: [ "3.10" ]
runs-on: ubuntu-latest
name: Prepare Matrix for integration tests without DB
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Python & Poetry Environment
uses: ./.github/actions/prepare_poetry_env
Expand All @@ -28,12 +28,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.8 ]
python-version: [ "3.10" ]
test-path: ${{ fromJSON(needs.prepare_matrix.outputs.test-path) }}
runs-on: ubuntu-latest
name: Run ${{ matrix.test-path.name }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Python & Poetry Environment
uses: ./.github/actions/prepare_poetry_env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:

- name: SCM Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python & Poetry Environment
uses: ./.github/actions/prepare_poetry_env
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
python-version: [ "3.10" ]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Python & Poetry Environment
uses: ./.github/actions/prepare_poetry_env
Expand Down

0 comments on commit 8fd85a9

Please sign in to comment.