Skip to content

Commit 9624e73

Browse files
committed
Update github workflows to latest pinned versions
1 parent 4bc5814 commit 9624e73

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/pypi_release.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,17 @@ jobs:
1010

1111
cd-job:
1212
name: Continuous Delivery
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
steps:
1515

1616
- name: SCM Checkout
1717
uses: actions/checkout@v4
1818

1919
- name: Setup Python & Poetry Environment
20-
uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
2121
with:
2222
python-version: "3.10"
23+
poetry-version: '1.8.5'
2324

2425
- name: Build Artifacts
2526
run: poetry build

.github/workflows/pytest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ jobs:
88
fail-fast: false
99
matrix:
1010
python-version: [ "3.10", "3.11" ]
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212

1313
steps:
1414

1515
- name: SCM Checkout
1616
uses: actions/checkout@v4
1717

1818
- name: Setup Python & Poetry Environment
19-
uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0
19+
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
2020
with:
2121
python-version: ${{ matrix.python-version }}
22-
poetry-version: '1.8.2'
22+
poetry-version: '1.8.5'
2323

2424
- name: Run pytest
2525
run: poetry run python3 -m pytest

0 commit comments

Comments
 (0)