Skip to content

Commit 8b9e5d0

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/cache](https://github.com/actions/cache), [actions/setup-python](https://github.com/actions/setup-python) and [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6...v7) Updates `sigstore/gh-action-sigstore-python` from 3.3.0 to 3.5.0 - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Changelog](https://github.com/sigstore/gh-action-sigstore-python/blob/main/CHANGELOG.md) - [Commits](sigstore/gh-action-sigstore-python@v3.3.0...v3.5.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.4.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 2abe247 commit 8b9e5d0

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
timeout-minutes: 60
99
name: Update docker cache
1010
steps:
11-
- uses: actions/checkout@v6
11+
- uses: actions/checkout@v7
1212
- name: Cache docker images
1313
id: custom-cache
14-
uses: actions/cache@v5
14+
uses: actions/cache@v6
1515
with:
1616
path: ./custom-cache/
1717
key: custom-cache
@@ -59,17 +59,17 @@ jobs:
5959
env:
6060
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
6161
steps:
62-
- uses: actions/checkout@v6
62+
- uses: actions/checkout@v7
6363

6464
- name: Set up Python ${{ matrix.python-version }}
65-
uses: actions/setup-python@v6
65+
uses: actions/setup-python@v7
6666
with:
6767
python-version: ${{ matrix.python-version }}
6868
allow-prereleases: true
6969

7070
- name: Cache docker images
7171
id: custom-cache
72-
uses: actions/cache@v5
72+
uses: actions/cache@v6
7373
with:
7474
path: ./custom-cache/
7575
fail-on-cache-miss: true

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v6
21+
- uses: actions/checkout@v7
2222
- name: Set up Python
23-
uses: actions/setup-python@v6
23+
uses: actions/setup-python@v7
2424
with:
2525
python-version: "3.x"
2626
- name: Install uv
@@ -72,7 +72,7 @@ jobs:
7272
name: python-package-distributions
7373
path: dist/
7474
- name: Sign the dists with Sigstore
75-
uses: sigstore/gh-action-sigstore-python@v3.3.0
75+
uses: sigstore/gh-action-sigstore-python@v3.5.0
7676
with:
7777
inputs: >-
7878
./dist/*.tar.gz

.github/workflows/ruff.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
ruff:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v6
7+
- uses: actions/checkout@v7
88
- uses: astral-sh/ruff-action@v3
99
with:
1010
version: "latest"

0 commit comments

Comments
 (0)