Skip to content

Commit f7990d4

Browse files
Bump the actions group with 4 updates
Bumps the actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-action). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `astral-sh/setup-uv` from 6.4.1 to 6.4.3 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@7edac99...e92bafb) Updates `zizmorcore/zizmor-action` from 87e33752ad17c7c7fc16fe27c858900c59b18d77 to c17832b972c15fd5f3d5065a7e16ad761a0a10d2 - [Release notes](https://github.com/zizmorcore/zizmor-action/releases) - [Commits](zizmorcore/zizmor-action@87e3375...c17832b) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major 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: astral-sh/setup-uv dependency-version: 6.4.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: zizmorcore/zizmor-action dependency-version: c17832b972c15fd5f3d5065a7e16ad761a0a10d2 dependency-type: direct:production dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 02dc45f commit f7990d4

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/dist-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
name: Make Dist
2929
runs-on: macos-latest
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
with:
3333
persist-credentials: false
3434

@@ -63,7 +63,7 @@ jobs:
6363
name: Download Dist
6464
steps:
6565
- name: Download all workflow run artifacts
66-
uses: actions/download-artifact@v4
66+
uses: actions/download-artifact@v5
6767
- name: Flatten directory
6868
working-directory: .
6969
run: |

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
id-token: write
7272
steps:
7373
- name: Download all the dists
74-
uses: actions/download-artifact@v4
74+
uses: actions/download-artifact@v5
7575
with:
7676
name: all-dist-${{ github.run_id }}
7777
path: dist/

.github/workflows/test-python.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
static:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
with:
2727
persist-credentials: false
2828
fetch-depth: 0
2929
- name: Install uv
30-
uses: astral-sh/setup-uv@7edac99f961f18b581bbd960d59d049f04c0002f # v5
30+
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v5
3131
with:
3232
enable-cache: true
3333
python-version: ${{ matrix.python-version }}
@@ -45,12 +45,12 @@ jobs:
4545
fail-fast: false
4646
name: CPython ${{ matrix.python-version }}-${{ matrix.os }}
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
with:
5050
persist-credentials: false
5151
fetch-depth: 0
5252
- name: Install uv
53-
uses: astral-sh/setup-uv@7edac99f961f18b581bbd960d59d049f04c0002f # v5
53+
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v5
5454
with:
5555
enable-cache: true
5656
python-version: ${{ matrix.python-version }}
@@ -81,18 +81,18 @@ jobs:
8181
build-min:
8282
runs-on: ubuntu-latest
8383
steps:
84-
- uses: actions/checkout@v4
84+
- uses: actions/checkout@v5
8585
with:
8686
persist-credentials: false
8787
fetch-depth: 0
8888
- name: Install uv
89-
uses: astral-sh/setup-uv@7edac99f961f18b581bbd960d59d049f04c0002f # v5
89+
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v5
9090
with:
9191
enable-cache: true
9292
python-version: ${{ env.MIN_PYTHON }}
9393
- uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
9494
- name: Install uv
95-
uses: astral-sh/setup-uv@7edac99f961f18b581bbd960d59d049f04c0002f # v5
95+
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v5
9696
with:
9797
enable-cache: true
9898
python-version: ${{ env.MIN_PYTHON }}

.github/workflows/zizmor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
security-events: write
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
persist-credentials: false
2020
- name: Run zizmor 🌈
21-
uses: zizmorcore/zizmor-action@87e33752ad17c7c7fc16fe27c858900c59b18d77
21+
uses: zizmorcore/zizmor-action@c17832b972c15fd5f3d5065a7e16ad761a0a10d2

0 commit comments

Comments
 (0)