Skip to content

Commit b601841

Browse files
dependabot[bot]jgeluk
authored andcommitted
ci(deps): bump the all-dependencies group with 4 updates
Bumps the all-dependencies group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `astral-sh/setup-uv` from 3 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v3...v7) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `actions/download-artifact` from 4 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent aa72347 commit b601841

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
matrix:
1919
python_version: ['3.14']
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222

2323
- name: Install uv
24-
uses: astral-sh/setup-uv@v3
24+
uses: astral-sh/setup-uv@v7
2525
with:
2626
enable-cache: true
2727
cache-dependency-glob: "uv.lock"
@@ -58,7 +58,7 @@ jobs:
5858
--tb=short
5959
6060
- name: Upload pytest test results
61-
uses: actions/upload-artifact@v4
61+
uses: actions/upload-artifact@v6
6262
with:
6363
name: test-results-${{ matrix.python_version }}
6464
path: test-results-${{ matrix.python_version }}.html

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# Steps represent a sequence of tasks that will be executed as part of the job
1616
steps:
1717
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- name: Configure git
2020
run: |
2121
git config --local user.email "action@github.com"

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
name: Build distribution
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313

1414
- name: Install uv
15-
uses: astral-sh/setup-uv@v3
15+
uses: astral-sh/setup-uv@v7
1616

1717
- name: Set up Python
1818
run: uv python install 3.14
@@ -21,7 +21,7 @@ jobs:
2121
run: uv build
2222

2323
- name: Upload distribution artifacts
24-
uses: actions/upload-artifact@v4
24+
uses: actions/upload-artifact@v6
2525
with:
2626
name: python-package-distributions
2727
path: dist/
@@ -37,7 +37,7 @@ jobs:
3737
id-token: write
3838
steps:
3939
- name: Download distribution artifacts
40-
uses: actions/download-artifact@v4
40+
uses: actions/download-artifact@v7
4141
with:
4242
name: python-package-distributions
4343
path: dist/

0 commit comments

Comments
 (0)