Skip to content

Commit a68df3f

Browse files
committed
upgrade more workflows
1 parent 67c51fb commit a68df3f

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
steps:
1313
- name: Create matrix
1414
id: create_matrix
15+
# https://github.com/fabiocaccamo/create-matrix-action/releases
1516
uses: fabiocaccamo/create-matrix-action@v5
1617
with:
1718
matrix: |
@@ -33,7 +34,7 @@ jobs:
3334
name: "Python ${{ matrix.python-version }} + Django ${{ matrix.django-version }}"
3435
runs-on: ubuntu-latest
3536
steps:
36-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3738
- uses: actions/setup-python@v6
3839
with:
3940
python-version: ${{ matrix.python-version }}
@@ -44,7 +45,7 @@ jobs:
4445
lint:
4546
runs-on: ubuntu-latest
4647
steps:
47-
- uses: actions/checkout@v5
48+
- uses: actions/checkout@v6
4849
- uses: actions/setup-python@v6
4950
with:
5051
python-version: "3.13"

.github/workflows/conventional-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v5
1515
# check for the most recent release: https://github.com/CondeNast/conventional-pull-request-action/releases
16-
- uses: CondeNast/conventional-pull-request-action@v0.1.2
16+
- uses: CondeNast/conventional-pull-request-action@v0.2.0
1717
env:
1818
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
contents: write
1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
ref: ${{ github.ref_name }}
2323
fetch-depth: 0
@@ -29,18 +29,20 @@ jobs:
2929
id: release
3030
# https://github.com/python-semantic-release/python-semantic-release/releases
3131
# https://python-semantic-release.readthedocs.io/en/latest/github-action.html
32-
uses: python-semantic-release/python-semantic-release@v9.21.0
32+
uses: python-semantic-release/python-semantic-release@v10.5.2
3333
with:
3434
github_token: ${{ secrets.BOT_GITHUB_TOKEN }}
3535

3636
- name: Publish | Upload package to PyPI
37+
# https://github.com/pypa/gh-action-pypi-publish/releases
3738
uses: pypa/gh-action-pypi-publish@release/v1
3839
# NOTE: DO NOT wrap the conditional in ${{ }} as it will always evaluate to true.
3940
# See https://github.com/actions/runner/issues/1173
4041
if: steps.release.outputs.released == 'true'
4142

4243
- name: Publish | Upload to GitHub Release Assets
43-
uses: python-semantic-release/publish-action@v9.21.0
44+
# https://github.com/python-semantic-release/publish-action/releases
45+
uses: python-semantic-release/publish-action@v10.5.2
4446
if: steps.release.outputs.released == 'true'
4547
with:
4648
github_token: ${{ secrets.BOT_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)