Skip to content

Commit 313dc66

Browse files
chore(deps): bump the actions group with 5 updates (#157)
Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `5` | `6` | 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/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) 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 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `docker/build-push-action` from 5 to 6 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v5...v6) --- 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/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major 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: docker/build-push-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9790dc2 commit 313dc66

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
pip uninstall -y "jupyter_mcp_server"
4343
rm -rf "jupyter_mcp_server"
4444
45-
- uses: actions/upload-artifact@v4
45+
- uses: actions/upload-artifact@v5
4646
if: startsWith(matrix.os, 'ubuntu')
4747
with:
4848
name: jupyter_mcp_server-sdist-${{ matrix.python-version }}
@@ -79,7 +79,7 @@ jobs:
7979
with:
8080
python-version: ${{ matrix.python-version }}
8181
architecture: "x64"
82-
- uses: actions/download-artifact@v5
82+
- uses: actions/download-artifact@v6
8383
with:
8484
name: jupyter_mcp_server-sdist-${{ matrix.python-version }}
8585
- name: Install and Test

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
name: Build Python Package
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: '3.10'
2424

@@ -31,7 +31,7 @@ jobs:
3131
run: python -m build
3232

3333
- name: Upload artifacts
34-
uses: actions/upload-artifact@v4
34+
uses: actions/upload-artifact@v5
3535
with:
3636
name: python-package
3737
path: dist/*
@@ -48,7 +48,7 @@ jobs:
4848
id-token: write # Required for OIDC
4949
steps:
5050
- name: Download artifacts
51-
uses: actions/download-artifact@v4
51+
uses: actions/download-artifact@v6
5252
with:
5353
name: python-package
5454
path: dist
@@ -68,7 +68,7 @@ jobs:
6868
packages: write # For GHCR
6969
id-token: write # For Docker Hub OIDC (optional)
7070
steps:
71-
- uses: actions/checkout@v4
71+
- uses: actions/checkout@v5
7272

7373
- name: Extract version from tag
7474
id: version
@@ -89,7 +89,7 @@ jobs:
8989
password: ${{ secrets.DOCKERHUB_TOKEN }}
9090

9191
- name: Build and push Docker image
92-
uses: docker/build-push-action@v5
92+
uses: docker/build-push-action@v6
9393
with:
9494
context: .
9595
platforms: linux/amd64,linux/arm64
@@ -108,7 +108,7 @@ jobs:
108108
permissions:
109109
contents: write
110110
steps:
111-
- uses: actions/checkout@v4
111+
- uses: actions/checkout@v5
112112
with:
113113
fetch-depth: 0 # Fetch complete history for release creation
114114

0 commit comments

Comments
 (0)