Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -18,7 +18,7 @@ jobs:
name: Lint (black, isort, flake8, mypy, import-linter)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.12"
Expand All@@ -44,7 +44,7 @@ jobs:
# la crédibilité du support Python 3.9–3.14 claimed dans pyproject.toml.
python: ${{ fromJSON(github.event_name == 'pull_request' && '["3.12"]' || '["3.9","3.10","3.11","3.12","3.13","3.14"]') }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
Expand All@@ -69,7 +69,7 @@ jobs:
name: Build documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.12"
Expand DownExpand Up@@ -113,7 +113,7 @@ jobs:
MYSQL_PASSWORD: mysqlpw
MYSQL_DATABASE: db2sqltest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand DownExpand Up@@ -178,7 +178,7 @@ jobs:
ORACLE_USER: apptest
ORACLE_PASSWORD: apptestpw
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -18,7 +18,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-binaries.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -54,7 +54,7 @@ jobs:
container: ""

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

# The Debian 12 container already ships with the right Python; only
# call setup-python on bare host runners (Windows / macOS).
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -57,7 +57,7 @@ jobs:
version: ${{ steps.release.outputs.version }}
tag: ${{ steps.release.outputs.tag }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
# PAT is required so that the commit + tag pushed below re-trigger
Expand Down
Loading