Skip to content

Commit 5c59a9a

Browse files
Bump the actions group across 1 directory with 4 updates
Bumps the actions group with 4 updates in the /.github/workflows directory: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact), [docker/login-action](https://github.com/docker/login-action) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/cache` from 4.2.4 to 4.3.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0400d5f...0057852) Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@ea165f8...330a01c) Updates `docker/login-action` from 3.5.0 to 3.6.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@184bdaa...5e57cd1) Updates `actions/download-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@634f93c...018cc2c) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/login-action dependency-version: 3.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent fa176fe commit 5c59a9a

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

.github/workflows/linux.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
rustc --version > .rustc-version
3939
40-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
40+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4141
with:
4242
path: |
4343
~/.cargo/registry
@@ -50,7 +50,7 @@ jobs:
5050
cargo build --release
5151
5252
- name: Upload pythonbuild Executable
53-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
53+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5454
with:
5555
name: ${{ matrix.crate_artifact_name }}
5656
path: target/release/pythonbuild
@@ -80,7 +80,7 @@ jobs:
8080
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
8181

8282
- name: Login to GitHub Container Registry
83-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
83+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
8484
with:
8585
registry: ghcr.io
8686
username: ${{ github.actor }}
@@ -129,7 +129,7 @@ jobs:
129129
MATRIX_ARCH: ${{ matrix.arch }}
130130

131131
- name: Upload Docker Image
132-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
132+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
133133
with:
134134
name: image-${{ matrix.name }}-linux_${{ matrix.arch }}
135135
path: build/image-*
@@ -230,20 +230,20 @@ jobs:
230230
enable-cache: false
231231

232232
- name: Download pythonbuild
233-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
233+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
234234
with:
235235
name: ${{ matrix.crate_artifact_name }}
236236
path: build
237237

238238
- name: Download images
239-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
239+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
240240
with:
241241
pattern: image-*
242242
path: build
243243
merge-multiple: true
244244

245245
- name: Cache downloads
246-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
246+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
247247
with:
248248
path: build/downloads
249249
key: ${{ matrix.target_triple }}-${{ hashFiles('pythonbuild/downloads.py')}}
@@ -286,7 +286,7 @@ jobs:
286286

287287
- name: Upload Distribution
288288
if: ${{ ! matrix.dry-run }}
289-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
289+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
290290
with:
291291
name: cpython-${{ matrix.python }}-${{ matrix.target_triple }}-${{ matrix.build_options }}
292292
path: dist/*
@@ -338,20 +338,20 @@ jobs:
338338
enable-cache: false
339339

340340
- name: Download pythonbuild
341-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
341+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
342342
with:
343343
name: ${{ matrix.crate_artifact_name }}
344344
path: build
345345

346346
- name: Download images
347-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
347+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
348348
with:
349349
pattern: image-*
350350
path: build
351351
merge-multiple: true
352352

353353
- name: Cache downloads
354-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
354+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
355355
with:
356356
path: build/downloads
357357
key: ${{ matrix.target_triple }}-${{ hashFiles('pythonbuild/downloads.py')}}
@@ -394,7 +394,7 @@ jobs:
394394

395395
- name: Upload Distribution
396396
if: ${{ ! matrix.dry-run }}
397-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
397+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
398398
with:
399399
name: cpython-${{ matrix.python }}-${{ matrix.target_triple }}-${{ matrix.build_options }}
400400
path: dist/*

.github/workflows/macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
rustc --version > .rustc-version
3434
35-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
35+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3636
with:
3737
path: |
3838
~/.cargo/registry
@@ -45,7 +45,7 @@ jobs:
4545
cargo build --release
4646
4747
- name: Upload pythonbuild Executable
48-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
48+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
4949
with:
5050
name: ${{ matrix.crate_artifact_name }}
5151
path: target/release/pythonbuild
@@ -136,7 +136,7 @@ jobs:
136136
enable-cache: false
137137

138138
- name: Download pythonbuild
139-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
139+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
140140
with:
141141
name: ${{ matrix.crate_artifact_name }}
142142
path: build
@@ -158,7 +158,7 @@ jobs:
158158

159159
- name: Upload Distributions
160160
if: ${{ ! matrix.dry-run }}
161-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
161+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
162162
with:
163163
name: cpython-${{ matrix.python }}-${{ matrix.target_triple }}-${{ matrix.build_options }}
164164
path: dist/*

.github/workflows/windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
rustc --version > .rustc-version
3434
35-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
35+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3636
with:
3737
path: |
3838
C:/Rust/.cargo/registry
@@ -45,7 +45,7 @@ jobs:
4545
cargo build --release
4646
4747
- name: Upload executable
48-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
48+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
4949
with:
5050
name: ${{ matrix.crate_artifact_name }}
5151
path: target/release/pythonbuild.exe
@@ -142,7 +142,7 @@ jobs:
142142
enable-cache: false
143143

144144
- name: Download pythonbuild Executable
145-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
145+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
146146
with:
147147
name: ${{ matrix.crate_artifact_name }}
148148

@@ -170,7 +170,7 @@ jobs:
170170
subject-path: dist/*
171171

172172
- name: Upload Distributions
173-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
173+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
174174
with:
175175
name: cpython-${{ matrix.python }}-${{ matrix.vcvars }}-${{ matrix.build_options }}
176176
path: dist/*

0 commit comments

Comments
 (0)