Skip to content

Commit 7b7b0bf

Browse files
build(deps): bump the gha-updates group across 1 directory with 3 updates
Bumps the gha-updates group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [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 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `JamesIves/github-pages-deploy-action` from 4.7.3 to 4.7.4 - [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@v4.7.3...v4.7.4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-updates - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-updates - dependency-name: JamesIves/github-pages-deploy-action dependency-version: 4.7.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gha-updates ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f905a16 commit 7b7b0bf

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci-cloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
UV_TORCH_BACKEND: "cpu"
5252

5353
steps:
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v6
5555

5656
- name: Install uv and set Python ${{ matrix.python-version }}
5757
uses: astral-sh/setup-uv@v7

.github/workflows/ci-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
UV_TORCH_BACKEND: "cpu"
4141

4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444

4545
- name: Install uv and set Python ${{ matrix.python-version }}
4646
uses: astral-sh/setup-uv@v7

.github/workflows/cleanup-caches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check out code
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313

1414
- name: Cleanup
1515
run: |

.github/workflows/docs-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
needs: build-docs
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v5 # deploy needs git credentials
18+
- uses: actions/checkout@v6 # deploy needs git credentials
1919
- name: Download prepared docs
20-
uses: actions/download-artifact@v5
20+
uses: actions/download-artifact@v7
2121
with:
2222
name: docs-html-${{ github.sha }}
2323
path: docs/build/html
2424

2525
- name: Deploy 🚀
26-
uses: JamesIves/github-pages-deploy-action@v4.7.3
26+
uses: JamesIves/github-pages-deploy-action@v4.8.0
2727
if: ${{ github.event_name == 'push' }}
2828
with:
2929
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)