Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
has_sha: ${{ steps.extract-sha.outputs.result != '' }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Extract commit SHA from comment
id: extract-sha
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Check CODEOWNERS authorization
id: auth-check
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const commenter = context.payload.comment.user.login;
Expand Down Expand Up @@ -177,12 +177,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ needs.check-authorization.outputs.commit_sha }}

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.11'
cache: 'pip'
Expand All @@ -200,7 +200,7 @@ jobs:

- name: Create in-progress check
id: create-check
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
result-encoding: string
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
python -m pytest tests/ -m "integration" -v --junitxml=junit/integration-test-results.xml

- name: Upload integration test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: integration-test-results
Expand All @@ -251,7 +251,7 @@ jobs:

- name: Update check with test results
if: always()
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
CHECK_ID: ${{ steps.create-check.outputs.result }}
TEST_OUTCOME: ${{ steps.run-tests.outcome }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.10'
cache: 'pip'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # Full history for changelog generation

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.11'

Expand Down Expand Up @@ -263,10 +263,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.11'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:

steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
# Only upload coverage report for Python 3.10
- name: Upload coverage report
if: matrix.python-version == '3.10'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-report
path: coverage.xml
Expand Down