Skip to content

Commit e43bdd9

Browse files
Bump the actions group with 5 updates
Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `3.29.11` | `3.30.1` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `5` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.12.4` | `1.13.0` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6.6.0` | `6.6.1` | Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `github/codeql-action` from 3.29.11 to 3.30.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@3c3833e...f1f6e5f) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `pypa/gh-action-pypi-publish` from 1.12.4 to 1.13.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@76f52bc...ed0c539) Updates `astral-sh/setup-uv` from 6.6.0 to 6.6.1 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@4959332...557e51d) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/codeql-action dependency-version: 3.30.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 6.6.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b84e1a7 commit e43bdd9

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ jobs:
4242
with:
4343
ref: ${{ inputs.ref }}
4444
persist-credentials: false
45-
- uses: actions/setup-python@v5
45+
- uses: actions/setup-python@v6
4646

4747
# Initializes the CodeQL tools for scanning.
4848
- name: Initialize CodeQL
49-
uses: github/codeql-action/init@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3
49+
uses: github/codeql-action/init@f1f6e5f6af878fb37288ce1c627459e94dbf7d01 # v3
5050
with:
5151
languages: ${{ matrix.language }}
5252
build-mode: ${{ matrix.build-mode }}
@@ -63,6 +63,6 @@ jobs:
6363
pip install -e .
6464
6565
- name: Perform CodeQL Analysis
66-
uses: github/codeql-action/analyze@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3
66+
uses: github/codeql-action/analyze@f1f6e5f6af878fb37288ce1c627459e94dbf7d01 # v3
6767
with:
6868
category: "/language:${{matrix.language}}"

.github/workflows/dist.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
persist-credentials: false
5353
ref: ${{ inputs.ref }}
5454

55-
- uses: actions/setup-python@v5
55+
- uses: actions/setup-python@v6
5656
with:
5757
cache: 'pip'
5858
python-version: 3.11
@@ -115,7 +115,7 @@ jobs:
115115
persist-credentials: false
116116
ref: ${{ inputs.ref }}
117117

118-
- uses: actions/setup-python@v5
118+
- uses: actions/setup-python@v6
119119
with:
120120
# Build sdist on lowest supported Python
121121
python-version: '3.9'
@@ -143,7 +143,7 @@ jobs:
143143
name: Download Wheels
144144
steps:
145145
- name: Download all workflow run artifacts
146-
uses: actions/download-artifact@v4
146+
uses: actions/download-artifact@v5
147147
- name: Flatten directory
148148
working-directory: .
149149
run: |

.github/workflows/release-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,19 +76,19 @@ jobs:
7676
id-token: write
7777
steps:
7878
- name: Download all the dists
79-
uses: actions/download-artifact@v4
79+
uses: actions/download-artifact@v5
8080
with:
8181
name: all-dist-${{ github.run_id }}
8282
path: dist/
8383
- name: Publish package distributions to TestPyPI
84-
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # release/v1
84+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1
8585
with:
8686
repository-url: https://test.pypi.org/legacy/
8787
skip-existing: true
8888
attestations: ${{ env.DRY_RUN }}
8989
- name: Publish package distributions to PyPI
9090
if: startsWith(env.DRY_RUN, 'false')
91-
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # release/v1
91+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1
9292

9393
post-publish:
9494
needs: [publish]

.github/workflows/test-python.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
persist-credentials: false
2525
- name: Install uv
26-
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v5
26+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v5
2727
with:
2828
enable-cache: true
2929
python-version: "3.9"
@@ -65,7 +65,7 @@ jobs:
6565
with:
6666
persist-credentials: false
6767
- name: Install uv
68-
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v5
68+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v5
6969
with:
7070
enable-cache: true
7171
python-version: ${{ matrix.python-version }}
@@ -84,7 +84,7 @@ jobs:
8484
with:
8585
persist-credentials: false
8686
- name: Install uv
87-
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v5
87+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v5
8888
with:
8989
enable-cache: true
9090
python-version: "3.9"
@@ -109,7 +109,7 @@ jobs:
109109
with:
110110
persist-credentials: false
111111
- name: Install uv
112-
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v5
112+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v5
113113
with:
114114
enable-cache: true
115115
python-version: "3.9"
@@ -128,7 +128,7 @@ jobs:
128128
with:
129129
persist-credentials: false
130130
- name: Install uv
131-
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v5
131+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v5
132132
with:
133133
enable-cache: true
134134
python-version: "3.9"
@@ -150,7 +150,7 @@ jobs:
150150
with:
151151
persist-credentials: false
152152
- name: Install uv
153-
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v5
153+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v5
154154
with:
155155
enable-cache: true
156156
python-version: "${{matrix.python}}"
@@ -170,7 +170,7 @@ jobs:
170170
- uses: actions/checkout@v5
171171
with:
172172
persist-credentials: false
173-
- uses: actions/setup-python@v5
173+
- uses: actions/setup-python@v6
174174
with:
175175
cache: 'pip'
176176
cache-dependency-path: 'pyproject.toml'
@@ -193,7 +193,7 @@ jobs:
193193
timeout-minutes: 20
194194
steps:
195195
- name: Download sdist
196-
uses: actions/download-artifact@v4
196+
uses: actions/download-artifact@v5
197197
- name: Unpack SDist
198198
shell: bash
199199
run: |
@@ -202,7 +202,7 @@ jobs:
202202
mkdir test
203203
tar --strip-components=1 -zxf *.tar.gz -C ./test
204204
ls test
205-
- uses: actions/setup-python@v5
205+
- uses: actions/setup-python@v6
206206
with:
207207
cache: 'pip'
208208
cache-dependency-path: 'sdist/test/pyproject.toml'
@@ -229,7 +229,7 @@ jobs:
229229
with:
230230
persist-credentials: false
231231
- name: Install uv
232-
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v5
232+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v5
233233
with:
234234
python-version: '3.9'
235235
- id: setup-mongodb
@@ -255,7 +255,7 @@ jobs:
255255
with:
256256
persist-credentials: false
257257
- name: Install uv
258-
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v5
258+
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v5
259259
with:
260260
python-version: '3.9'
261261
- id: setup-mongodb

0 commit comments

Comments
 (0)