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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
image: ghcr.io/thombashi/python-ci:3.11

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

- run: make build

Expand All @@ -42,7 +42,7 @@ jobs:
image: ghcr.io/thombashi/python-ci:3.11

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

- run: make docs

Expand All @@ -56,7 +56,7 @@ jobs:
image: ghcr.io/thombashi/python-ci:3.13

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

- run: make check

Expand All @@ -73,10 +73,10 @@ jobs:
timeout-minutes: 30

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

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
Expand Down Expand Up @@ -122,10 +122,10 @@ jobs:
timeout-minutes: 20

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

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.13"
cache: pip
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
timeout-minutes: 20

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
fetch-tags: true

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.13"
cache: pip
Expand All @@ -32,7 +32,7 @@ jobs:

- run: make build

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: dist
path: ./dist/*
Expand All @@ -48,7 +48,7 @@ jobs:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
name: dist
path: ./dist
Expand All @@ -65,13 +65,13 @@ jobs:
contents: write

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
name: dist
path: ./dist

- name: Sign the dists with Sigstore
uses: sigstore/gh-action-sigstore-python@v3.0.0
uses: sigstore/gh-action-sigstore-python@v3.1.0
with:
inputs: >-
./dist/*.tar.gz
Expand Down
Loading