Skip to content

Commit 63fab40

Browse files
chore(deps): bump the github-actions group with 5 updates
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/setup-python](https://github.com/actions/setup-python) | `6` | `7` | | [actions/checkout](https://github.com/actions/checkout) | `7.0.0` | `7.0.1` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `8.2.0` | `9.0.0` | | [hynek/build-and-inspect-python-package](https://github.com/hynek/build-and-inspect-python-package) | `2` | `2.18.0` | | [actions/attest](https://github.com/actions/attest) | `4.1.0` | `4.2.0` | Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6...v7) Updates `actions/checkout` from 7.0.0 to 7.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v7.0.0...v7.0.1) Updates `astral-sh/setup-uv` from 8.2.0 to 9.0.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v8.2.0...v9.0.0) Updates `hynek/build-and-inspect-python-package` from 2 to 2.18.0 - [Release notes](https://github.com/hynek/build-and-inspect-python-package/releases) - [Changelog](https://github.com/hynek/build-and-inspect-python-package/blob/main/CHANGELOG.md) - [Commits](hynek/build-and-inspect-python-package@v2...v2.18.0) Updates `actions/attest` from 4.1.0 to 4.2.0 - [Release notes](https://github.com/actions/attest/releases) - [Changelog](https://github.com/actions/attest/blob/main/RELEASE.md) - [Commits](actions/attest@v4.1.0...v4.2.0) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: astral-sh/setup-uv dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: hynek/build-and-inspect-python-package dependency-version: 2.18.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/attest dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1ff9327 commit 63fab40

4 files changed

Lines changed: 23 additions & 23 deletions

File tree

.github/workflows/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,20 @@ jobs:
3131
- macos-15-intel
3232
- macos-15
3333
steps:
34-
- uses: actions/checkout@v7.0.0
34+
- uses: actions/checkout@v7.0.1
3535
with:
3636
persist-credentials: false
37-
- uses: astral-sh/setup-uv@v8.2.0
37+
- uses: astral-sh/setup-uv@v9.0.0
3838
- uses: ./
3939
- run: nox --session github_actions_default_tests
4040

4141
action-all-tests:
4242
runs-on: windows-latest
4343
steps:
44-
- uses: actions/checkout@v7.0.0
44+
- uses: actions/checkout@v7.0.1
4545
with:
4646
persist-credentials: false
47-
- uses: actions/setup-python@v6
47+
- uses: actions/setup-python@v7
4848
with:
4949
python-version: 3.12
5050
- uses: ./

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
dist:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v7.0.0
23+
- uses: actions/checkout@v7.0.1
2424
with:
2525
persist-credentials: false
26-
- uses: hynek/build-and-inspect-python-package@v2
26+
- uses: hynek/build-and-inspect-python-package@v2.18.0
2727

2828
deploy:
2929
needs: [dist]
@@ -42,7 +42,7 @@ jobs:
4242
path: dist
4343

4444
- name: Generate artifact attestation for sdist and wheel
45-
uses: actions/attest@v4.1.0
45+
uses: actions/attest@v4.2.0
4646
with:
4747
subject-path: "dist/*"
4848

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,22 @@ jobs:
3535
- os: macos-15-intel
3636
python-version: "3.12"
3737
steps:
38-
- uses: actions/checkout@v7.0.0
38+
- uses: actions/checkout@v7.0.1
3939
with:
4040
persist-credentials: false
4141
- name: Set up non-default Pythons
42-
uses: actions/setup-python@v6
42+
uses: actions/setup-python@v7
4343
with:
4444
python-version: |
4545
3.10
4646
3.11
4747
- name: Set up Python ${{ matrix.python-version }}
48-
uses: actions/setup-python@v6
48+
uses: actions/setup-python@v7
4949
with:
5050
python-version: ${{ matrix.python-version }}
5151
allow-prereleases: true
5252
- name: Setup uv
53-
uses: astral-sh/setup-uv@v8.2.0
53+
uses: astral-sh/setup-uv@v9.0.0
5454
- name: Set up Miniconda
5555
uses: conda-incubator/setup-miniconda@v4
5656
if: matrix.python-version == '3.14'
@@ -86,7 +86,7 @@ jobs:
8686
run:
8787
shell: msys2 {0}
8888
steps:
89-
- uses: actions/checkout@v7.0.0
89+
- uses: actions/checkout@v7.0.1
9090
with:
9191
persist-credentials: false
9292
- uses: msys2/setup-msys2@v2.32.0
@@ -102,7 +102,7 @@ jobs:
102102
mingw-w64-x86_64-python-virtualenv
103103
mingw-w64-x86_64-gcc
104104
- name: Setup uv
105-
uses: astral-sh/setup-uv@v8.2.0
105+
uses: astral-sh/setup-uv@v9.0.0
106106
- name: Install Nox-under-test
107107
run: python -m pip install .
108108
# Force virtualenv so the session venv stays a MinGW interpreter
@@ -126,15 +126,15 @@ jobs:
126126
needs: [build, msys2]
127127
runs-on: ubuntu-latest
128128
steps:
129-
- uses: actions/checkout@v7.0.0
129+
- uses: actions/checkout@v7.0.1
130130
with:
131131
persist-credentials: false
132132
- name: Set up Python 3.12
133-
uses: actions/setup-python@v6
133+
uses: actions/setup-python@v7
134134
with:
135135
python-version: "3.12"
136136
- name: Setup uv
137-
uses: astral-sh/setup-uv@v8.2.0
137+
uses: astral-sh/setup-uv@v9.0.0
138138
- name: Install Nox-under-test
139139
run: uv pip install --system .
140140
- name: Download individual coverage reports
@@ -149,11 +149,11 @@ jobs:
149149
lint:
150150
runs-on: ubuntu-latest
151151
steps:
152-
- uses: actions/checkout@v7.0.0
152+
- uses: actions/checkout@v7.0.1
153153
with:
154154
persist-credentials: false
155155
- name: Set up Python 3.12
156-
uses: actions/setup-python@v6
156+
uses: actions/setup-python@v7
157157
with:
158158
python-version: "3.12"
159159
- name: Install Nox-under-test
@@ -164,15 +164,15 @@ jobs:
164164
docs:
165165
runs-on: ubuntu-latest
166166
steps:
167-
- uses: actions/checkout@v7.0.0
167+
- uses: actions/checkout@v7.0.1
168168
with:
169169
persist-credentials: false
170170
- name: Set up Python 3.12
171-
uses: actions/setup-python@v6
171+
uses: actions/setup-python@v7
172172
with:
173173
python-version: "3.12"
174174
- name: Setup uv
175-
uses: astral-sh/setup-uv@v8.2.0
175+
uses: astral-sh/setup-uv@v9.0.0
176176
- name: Install Nox-under-test
177177
run: uv pip install --system .
178178
- name: Docs

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ branding:
1212
runs:
1313
using: composite
1414
steps:
15-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
15+
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
1616
id: localpython
1717
with:
1818
python-version: "3.10 - 3.14"
@@ -27,7 +27,7 @@ runs:
2727
STEPS_LOCALPYTHON_OUTPUTS_PYTHON_PATH: ${{ steps.localpython.outputs.python-path }}
2828
INPUTS_PYTHON_VERSIONS: ${{ inputs.python-versions }}
2929

30-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
30+
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
3131
id: allpython
3232
with:
3333
python-version: "${{ join(fromJSON(steps.helper.outputs.interpreters), '\n') }}"

0 commit comments

Comments
 (0)