Skip to content

Commit a2cd854

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 642c300 commit a2cd854

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-*
@@ -228,20 +228,20 @@ jobs:
228228
python-version: "3.11"
229229

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

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

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

285285
- name: Upload Distribution
286286
if: ${{ ! matrix.dry-run }}
287-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
287+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
288288
with:
289289
name: cpython-${{ matrix.python }}-${{ matrix.target_triple }}-${{ matrix.build_options }}
290290
path: dist/*
@@ -336,20 +336,20 @@ jobs:
336336
python-version: "3.11"
337337

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

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

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

393393
- name: Upload Distribution
394394
if: ${{ ! matrix.dry-run }}
395-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
395+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
396396
with:
397397
name: cpython-${{ matrix.python }}-${{ matrix.target_triple }}-${{ matrix.build_options }}
398398
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
@@ -134,7 +134,7 @@ jobs:
134134
python-version: "3.11"
135135

136136
- name: Download pythonbuild
137-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
137+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
138138
with:
139139
name: ${{ matrix.crate_artifact_name }}
140140
path: build
@@ -156,7 +156,7 @@ jobs:
156156

157157
- name: Upload Distributions
158158
if: ${{ ! matrix.dry-run }}
159-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
159+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
160160
with:
161161
name: cpython-${{ matrix.python }}-${{ matrix.target_triple }}-${{ matrix.build_options }}
162162
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
@@ -140,7 +140,7 @@ jobs:
140140
python-version: "3.12"
141141

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

@@ -168,7 +168,7 @@ jobs:
168168
subject-path: dist/*
169169

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

0 commit comments

Comments
 (0)