Skip to content

Commit 5ed5088

Browse files
Bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action). Updates `actions/checkout` from 5.0.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v5.0.1...v6.0.2) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) Updates `JamesIves/github-pages-deploy-action` from 4.7.6 to 4.8.0 - [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@9d877ee...d92aa23) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: JamesIves/github-pages-deploy-action dependency-version: 4.8.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 3b31915 commit 5ed5088

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Build & Upload Artifact
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v6
21+
- uses: actions/checkout@v6.0.2
2222
with:
2323
persist-credentials: false
2424

@@ -52,15 +52,15 @@ jobs:
5252
needs: build-docs
5353
if: contains(github.ref, 'tags')
5454
steps:
55-
- uses: actions/checkout@v6
55+
- uses: actions/checkout@v6.0.2
5656
with:
5757
persist-credentials: false
58-
- uses: actions/download-artifact@v7.0.0
58+
- uses: actions/download-artifact@v7
5959
with:
6060
name: docs
6161

6262
- name: Push to GitHub pages
63-
uses: JamesIves/github-pages-deploy-action@9d877eea73427180ae43cf98e8914934fe157a1a # v4
63+
uses: JamesIves/github-pages-deploy-action@d92aa235d04922e8f08b40ce78cc5442fcfbfa2f # v4
6464
with:
6565
folder: html
6666
ssh-key: ${{ secrets.DEPLOY_KEY }}

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v6
11+
- uses: actions/checkout@v6.0.2
1212
with:
1313
persist-credentials: false
1414

@@ -28,7 +28,7 @@ jobs:
2828
run: python3 -m build
2929

3030
- name: Store the distribution packages
31-
uses: actions/upload-artifact@v5
31+
uses: actions/upload-artifact@v6
3232
with:
3333
name: python-package-distributions
3434
path: dist/
@@ -48,7 +48,7 @@ jobs:
4848

4949
steps:
5050
- name: Download all the dists
51-
uses: actions/download-artifact@v6
51+
uses: actions/download-artifact@v7
5252
with:
5353
name: python-package-distributions
5454
path: dist/

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: precommit
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
26+
- uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v5.0.1
2727
with:
2828
fetch-depth: 0
2929
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
@@ -42,7 +42,7 @@ jobs:
4242
python-version: ["3.11", "3.12", "3.13"]
4343

4444
steps:
45-
- uses: actions/checkout@v6
45+
- uses: actions/checkout@v6.0.2
4646
with:
4747
persist-credentials: false
4848

0 commit comments

Comments
 (0)