Skip to content

Commit 4d72634

Browse files
committed
Merge branch 'main' into dependency-bump
2 parents bd7f86f + 62e1078 commit 4d72634

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ registries:
55
type: docker-registry
66
url: ghcr.io
77
username: PAT
8-
password: ${{secrets.CONTAINER_BUILDER_TOKEN}}
8+
password: ${{secrets.BASE_CONTAINER_IMAGE_READER_DEPENDABOT}}
99
updates:
1010
- package-ecosystem: github-actions
1111
directory: "/"

.github/workflows/coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
actions: read
1818
steps:
1919
- name: Python Coverage Comment
20-
uses: py-cov-action/python-coverage-comment-action@b2eb38dd175bf053189b35f738f9207278b00925
20+
uses: py-cov-action/python-coverage-comment-action@0544a9c648672334d94ec5dd1add7410b4470ddc
2121
with:
2222
GITHUB_TOKEN: ${{ github.token }}
2323
GITHUB_PR_RUN_ID: ${{ github.event.workflow_run.id }}

.github/workflows/publish-to-pypi.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Set up Python
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: "3.x"
1919
- name: Install hatch
@@ -45,12 +45,12 @@ jobs:
4545

4646
steps:
4747
- name: Download all the dists
48-
uses: actions/download-artifact@v4
48+
uses: actions/download-artifact@v5
4949
with:
5050
name: python-package-distributions
5151
path: dist/
5252
- name: Publish distribution 📦 to PyPI
53-
uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.3
53+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
5454

5555
github-release:
5656
name: >-
@@ -66,12 +66,12 @@ jobs:
6666

6767
steps:
6868
- name: Download all the dists
69-
uses: actions/download-artifact@v4
69+
uses: actions/download-artifact@v5
7070
with:
7171
name: python-package-distributions
7272
path: dist/
7373
- name: Sign the dists with Sigstore
74-
uses: sigstore/gh-action-sigstore-python@f514d46b907ebcd5bedc05145c03b69c1edd8b46 #v3.0.0
74+
uses: sigstore/gh-action-sigstore-python@f7ad0af51a5648d09a20d00370f0a91c3bdf8f84 #v3.0.1
7575
with:
7676
inputs: >-
7777
./dist/*.tar.gz
@@ -110,11 +110,11 @@ jobs:
110110

111111
steps:
112112
- name: Download all the dists
113-
uses: actions/download-artifact@v4
113+
uses: actions/download-artifact@v5
114114
with:
115115
name: python-package-distributions
116116
path: dist/
117117
- name: Publish distribution 📦 to TestPyPI
118-
uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.3
118+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
119119
with:
120120
repository-url: https://test.pypi.org/legacy/

.github/workflows/pyright.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212

1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Set up Python
17-
uses: actions/setup-python@v5
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version: '3.x'
2020
- name: Install dependencies
@@ -23,4 +23,4 @@ jobs:
2323
hatch env create dev
2424
- run: echo "$(hatch env find dev)/bin" >> $GITHUB_PATH
2525
- name: Run pyright
26-
uses: jakebailey/pyright-action@b5d50e5cde6547546a5c4ac92e416a8c2c1a1dfe
26+
uses: jakebailey/pyright-action@6cabc0f01c4994be48fd45cd9dbacdd6e1ee6e5e

.github/workflows/pytest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Set up Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: '3.x'
2626
- name: Install dependencies
@@ -51,8 +51,8 @@ jobs:
5151
pull-requests: write
5252
contents: write
5353
steps:
54-
- uses: actions/checkout@v4
55-
- uses: actions/download-artifact@v4
54+
- uses: actions/checkout@v5
55+
- uses: actions/download-artifact@v5
5656
id: download
5757
with:
5858
pattern: coverage-*
@@ -63,7 +63,7 @@ jobs:
6363
echo "[run]" >> .coveragerc
6464
echo "relative_files = true" >> .coveragerc
6565
- name: Python Coverage Comment
66-
uses: py-cov-action/python-coverage-comment-action@b2eb38dd175bf053189b35f738f9207278b00925
66+
uses: py-cov-action/python-coverage-comment-action@0544a9c648672334d94ec5dd1add7410b4470ddc
6767
with:
6868
GITHUB_TOKEN: ${{ github.token }}
6969
MERGE_COVERAGE_FILES: true

.github/workflows/ruff.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212

1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Set up Python
17-
uses: actions/setup-python@v5
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version: '3.x'
2020
- name: Install dependencies

0 commit comments

Comments
 (0)