Skip to content

Commit 43be40d

Browse files
build(deps): bump the github-actions group across 2 directories with 5 updates
Bumps the github-actions group with 4 updates in the / directory: [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request), [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Bumps the github-actions group with 2 updates in the /.github/actions/setup-env directory: [actions/cache](https://github.com/actions/cache) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `peter-evans/create-pull-request` from 7.0.11 to 8.0.0 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@22a9089...98357b1) Updates `actions/cache` from 4.3.0 to 5.0.1 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0057852...9255dc7) Updates `actions/upload-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@330a01c...b7c566a) Updates `actions/download-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@018cc2c...37930b1) Updates `actions/cache` from 4.3.0 to 5.0.1 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0057852...9255dc7) Updates `astral-sh/setup-uv` from 7.1.5 to 7.1.6 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@ed21f2f...681c641) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: astral-sh/setup-uv dependency-version: 7.1.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 394227c commit 43be40d

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/actions/setup-env/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ runs:
2828
using: composite
2929
steps:
3030
- name: Download uv lock
31-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
31+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
3232
if: ${{ inputs.use-cached-uv-lock != 'false' }}
3333
id: restore-uv-lock
3434
with:
@@ -41,7 +41,7 @@ runs:
4141

4242
- name: Set up uv with Python ${{ inputs.python-version }}
4343
id: setup-python
44-
uses: astral-sh/setup-uv@ed21f2f24f8dd64503750218de024bcf64c7250a # v7.1.5
44+
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
4545
with:
4646
version: '0.9.2'
4747
enable-cache: true

.github/workflows/create-release-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
git commit -a -m "docs: build changelog"
6262
6363
- name: Create pull request
64-
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
64+
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
6565
with:
6666
token: ${{ steps.generate_token.outputs.token }}
6767
branch: auto/release-v${{ inputs.version }}

.github/workflows/lint-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
use-cached-uv-lock: 'false' # we don't need the lock here, we will automatically download it below
5757

5858
- name: Restore uv lock
59-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
59+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
6060
id: cache-uv-lock
6161
with:
6262
key: uv-lock-resolved-${{ env.UV_RESOLUTION }}
@@ -79,7 +79,7 @@ jobs:
7979
UV_LOCKED: 0
8080
run: uv lock --refresh
8181

82-
- uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
82+
- uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
8383
if: steps.lock-uv-deps.outcome == 'success'
8484
name: upload-uv-lock
8585
with:
@@ -131,7 +131,7 @@ jobs:
131131
persist-credentials: false
132132

133133
- name: Cache pip cache
134-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
134+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
135135
with:
136136
key: ${{ runner.os }}-prek-pip-${{ hashFiles('**/pyproject.toml') }}
137137
path: ~/.cache/pip

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo -e "\n</details>\n" >> $GITHUB_STEP_SUMMARY
4747
4848
- name: Upload artifact
49-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
49+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
5050
with:
5151
name: dist
5252
path: dist/
@@ -66,7 +66,7 @@ jobs:
6666

6767
steps:
6868
- name: Download build artifact
69-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
69+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
7070
with:
7171
name: dist
7272
path: dist/
@@ -108,7 +108,7 @@ jobs:
108108

109109
steps:
110110
- name: Download build artifact
111-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
111+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
112112
with:
113113
name: dist
114114
path: dist/
@@ -148,7 +148,7 @@ jobs:
148148

149149
steps:
150150
- name: Download build artifact
151-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
151+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
152152
with:
153153
name: dist
154154
path: dist/
@@ -200,7 +200,7 @@ jobs:
200200
echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
201201
202202
- name: Create pull request
203-
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
203+
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
204204
with:
205205
token: ${{ steps.generate_token.outputs.token }}
206206
branch: auto/dev-v${{ steps.update-version.outputs.new_version }}

0 commit comments

Comments
 (0)