Skip to content

Commit b4a7aa6

Browse files
Bump the actions group with 4 updates
Bumps the actions group with 4 updates: [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `astral-sh/setup-uv` from 7.1.1 to 7.1.2 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@2ddd2b9...8585678) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `github/codeql-action` from 4.30.9 to 4.31.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@16140ae...4e94bd1) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-version: 7.1.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/codeql-action dependency-version: 4.31.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8d43ad4 commit b4a7aa6

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
persist-credentials: false
3838
- name: Install uv
39-
uses: astral-sh/setup-uv@2ddd2b9cb38ad8efd50337e8ab201519a34c9f24 # v7
39+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
4040
with:
4141
enable-cache: true
4242
python-version: ${{ matrix.python-version }}

.github/workflows/_release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
persist-credentials: false
4242
- name: Install uv
43-
uses: astral-sh/setup-uv@2ddd2b9cb38ad8efd50337e8ab201519a34c9f24 # v7
43+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
4444
with:
4545
python-version: ${{ env.PYTHON_VERSION }}
4646

@@ -59,7 +59,7 @@ jobs:
5959
run: uv build
6060

6161
- name: Upload build
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v5
6363
with:
6464
name: dist
6565
path: ${{ inputs.working-directory }}/dist/
@@ -108,7 +108,7 @@ jobs:
108108
# used in the real world.
109109

110110
- name: Install uv
111-
uses: astral-sh/setup-uv@2ddd2b9cb38ad8efd50337e8ab201519a34c9f24 # v7
111+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
112112
with:
113113
python-version: ${{ env.PYTHON_VERSION }}
114114

@@ -209,11 +209,11 @@ jobs:
209209
persist-credentials: false
210210

211211
- name: Install uv
212-
uses: astral-sh/setup-uv@2ddd2b9cb38ad8efd50337e8ab201519a34c9f24 # v7
212+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
213213
with:
214214
python-version: ${{ env.PYTHON_VERSION }}
215215

216-
- uses: actions/download-artifact@v5
216+
- uses: actions/download-artifact@v6
217217
with:
218218
name: dist
219219
path: ${{ inputs.working-directory }}/dist/
@@ -248,11 +248,11 @@ jobs:
248248
with:
249249
persist-credentials: false
250250
- name: Install uv
251-
uses: astral-sh/setup-uv@2ddd2b9cb38ad8efd50337e8ab201519a34c9f24 # v7
251+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
252252
with:
253253
python-version: ${{ env.PYTHON_VERSION }}
254254

255-
- uses: actions/download-artifact@v5
255+
- uses: actions/download-artifact@v6
256256
with:
257257
name: dist
258258
path: ${{ inputs.working-directory }}/dist/

.github/workflows/_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
persist-credentials: false
2828
- name: Install uv
29-
uses: astral-sh/setup-uv@2ddd2b9cb38ad8efd50337e8ab201519a34c9f24 # v7
29+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
3030
with:
3131
enable-cache: true
3232
python-version: ${{ matrix.python-version }}

.github/workflows/_test_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
persist-credentials: false
2929
- name: Install uv
30-
uses: astral-sh/setup-uv@2ddd2b9cb38ad8efd50337e8ab201519a34c9f24 # v7
30+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
3131
with:
3232
python-version: ${{ env.PYTHON_VERSION }}
3333

@@ -46,7 +46,7 @@ jobs:
4646
run: uv build
4747

4848
- name: Upload build
49-
uses: actions/upload-artifact@v4
49+
uses: actions/upload-artifact@v5
5050
with:
5151
name: test-dist
5252
path: ${{ inputs.working-directory }}/dist/
@@ -75,7 +75,7 @@ jobs:
7575
- uses: actions/checkout@v5
7676
with:
7777
persist-credentials: false
78-
- uses: actions/download-artifact@v5
78+
- uses: actions/download-artifact@v6
7979
with:
8080
name: test-dist
8181
path: ${{ inputs.working-directory }}/dist/

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
persist-credentials: false
8484
- uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
8585
- name: Install uv
86-
uses: astral-sh/setup-uv@2ddd2b9cb38ad8efd50337e8ab201519a34c9f24 # v7
86+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
8787
with:
8888
enable-cache: true
8989
python-version: "3.10"

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 # v4
46+
uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4
4747
with:
4848
languages: ${{ matrix.language }}
4949
build-mode: ${{ matrix.build-mode }}
@@ -60,6 +60,6 @@ jobs:
6060
pip install -e .
6161
6262
- name: Perform CodeQL Analysis
63-
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 # v4
63+
uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4
6464
with:
6565
category: "/language:${{matrix.language}}"

0 commit comments

Comments
 (0)