Skip to content

Commit 59b84c8

Browse files
build(deps): bump the github-actions-breaking group with 4 updates (#38035)
Bumps the github-actions-breaking group with 4 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/cache](https://github.com/actions/cache), [actions/download-artifact](https://github.com/actions/download-artifact) and [dessant/lock-threads](https://github.com/dessant/lock-threads). 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/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/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 `dessant/lock-threads` from 5.0.1 to 6.0.0 - [Release notes](https://github.com/dessant/lock-threads/releases) - [Changelog](https://github.com/dessant/lock-threads/blob/main/CHANGELOG.md) - [Commits](dessant/lock-threads@1bf7ec2...7266a7c) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-breaking - dependency-name: actions/cache dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-breaking - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-breaking - dependency-name: dessant/lock-threads dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-breaking ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e3263be commit 59b84c8

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build-terraform-cli.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ jobs:
8585
echo "RPM_PACKAGE=$(basename out/*.rpm)" >> $GITHUB_ENV
8686
echo "DEB_PACKAGE=$(basename out/*.deb)" >> $GITHUB_ENV
8787
- if: ${{ inputs.goos == 'linux' }}
88-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
88+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
8989
with:
9090
name: ${{ env.RPM_PACKAGE }}
9191
path: out/${{ env.RPM_PACKAGE }}
9292
if-no-files-found: error
9393
- if: ${{ inputs.goos == 'linux' }}
94-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
94+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
9595
with:
9696
name: ${{ env.DEB_PACKAGE }}
9797
path: out/${{ env.DEB_PACKAGE }}

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
version: ${{ needs.get-product-version.outputs.product-version }}
8888
product: ${{ env.PKG_NAME }}
8989

90-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
90+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
9191
with:
9292
name: metadata.json
9393
path: ${{ steps.generate-metadata-file.outputs.filepath }}
@@ -210,7 +210,7 @@ jobs:
210210
bash ./internal/command/e2etest/make-archive.sh
211211
212212
- name: Save test harness to cache
213-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
213+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
214214
with:
215215
path: ${{ steps.set-cache-values.outputs.e2e-cache-path }}
216216
key: ${{ steps.set-cache-values.outputs.e2e-cache-key }}_${{ matrix.goos }}_${{ matrix.goarch }}
@@ -250,15 +250,15 @@ jobs:
250250
if: ${{ (matrix.goos == 'linux') || (matrix.goos == 'darwin') }}
251251
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
252252
- name: "Restore cache"
253-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
253+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
254254
id: e2etestpkg
255255
with:
256256
path: ${{ needs.e2etest-build.outputs.e2e-cache-path }}
257257
key: ${{ needs.e2etest-build.outputs.e2e-cache-key }}_${{ matrix.goos }}_${{ matrix.goarch }}
258258
fail-on-cache-miss: true
259259
enableCrossOsArchive: true
260260
- name: "Download Terraform CLI package"
261-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
261+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
262262
id: clipkg
263263
with:
264264
name: terraform_${{env.version}}_${{ env.os }}_${{ env.arch }}.zip
@@ -307,7 +307,7 @@ jobs:
307307
with:
308308
go-version: ${{ needs.get-go-version.outputs.go-version }}
309309
- name: Download Terraform CLI package
310-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
310+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
311311
id: clipkg
312312
with:
313313
name: terraform_${{ env.version }}_linux_amd64.zip

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
fi
143143
144144
- name: Cache protobuf tools
145-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
145+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
146146
with:
147147
path: "tools/protobuf-compile/.workdir"
148148
key: protobuf-tools-${{ hashFiles('tools/protobuf-compile/protobuf-compile.go') }}

.github/workflows/lock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
lock:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: dessant/lock-threads@1bf7ec25051fe7c00bdd17e6a7cf3d7bfb7dc771 # v5.0.1
11+
- uses: dessant/lock-threads@7266a7ce5c1df01b1c6db85bf8cd86c737dadbe7 # v6.0.0
1212
with:
1313
process-only: 'issues, prs'
1414
github-token: ${{ github.token }}

0 commit comments

Comments
 (0)