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
6 changes: 3 additions & 3 deletions .github/workflows/cc-server-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

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

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

Expand All @@ -43,7 +43,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: fail2ban-test-results-${{ github.run_number }}
path: fail2ban_test_results.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-slow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
EXTRA: true
steps:
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:

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

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -73,12 +73,12 @@ jobs:

- name: Disable S3 unit tests for Python 3.8 (botocore requires Python 3.9+)
if: ${{ startsWith(matrix.python-version, '3.8') }}
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
core.exportVariable('CDXT_DISABLE_S3_TESTS', '1')
- name: Set environment variables for faster unit tests (requests are mocked)
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
core.exportVariable('CDXT_MAX_ERRORS', '2')
Expand Down Expand Up @@ -116,10 +116,10 @@ jobs:

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

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -132,7 +132,7 @@ jobs:
run: pip install .[test]

- name: Set environment variables for faster unit tests (requests are mocked)
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
core.exportVariable('CDXT_MAX_ERRORS', '2')
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/publish_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
version: ${{ steps.version.outputs.version }}
steps:
- name: Checkout (full history + tags)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Ensure tags are present
run: git fetch --tags --force --prune

- name: Set up Python 3.13
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.13"

Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
ls dist/cdx_toolkit-"${EXPECTED}"-*.whl

- name: Upload dist artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dist
path: dist/
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
contents: read
steps:
- name: Download dist artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: dist
path: dist/
Expand All @@ -155,7 +155,7 @@ jobs:
contents: read
steps:
- name: Download dist artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: dist
path: dist/
Expand All @@ -172,13 +172,13 @@ jobs:
contents: write
steps:
- name: Checkout the release tag
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ needs.bump-and-build.outputs.version }}
fetch-depth: 0

- name: Download dist artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: dist
path: dist/
Expand Down
Loading