Skip to content

Commit 2baf5c8

Browse files
Bump the github-actions-updates group with 2 updates
Bumps the github-actions-updates group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 86f9798 commit 2baf5c8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,15 @@ jobs:
108108
109109
- name: upload ghcr digest
110110
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
111-
uses: actions/upload-artifact@v6
111+
uses: actions/upload-artifact@v7
112112
with:
113113
name: digests-${{ matrix.image.name }}-ghcr-${{ matrix.platform.artifact }}
114114
path: /tmp/digests/${{ matrix.image.name }}/ghcr/*
115115
retention-days: 1
116116

117117
- name: upload dockerhub digest
118118
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
119-
uses: actions/upload-artifact@v6
119+
uses: actions/upload-artifact@v7
120120
with:
121121
name: digests-${{ matrix.image.name }}-dockerhub-${{ matrix.platform.artifact }}
122122
path: /tmp/digests/${{ matrix.image.name }}/dockerhub/*
@@ -131,14 +131,14 @@ jobs:
131131
image: [app, buildgo, scratch]
132132
steps:
133133
- name: download ghcr digests
134-
uses: actions/download-artifact@v7
134+
uses: actions/download-artifact@v8
135135
with:
136136
path: /tmp/digests/ghcr
137137
pattern: digests-${{ matrix.image }}-ghcr-*
138138
merge-multiple: true
139139

140140
- name: download dockerhub digests
141-
uses: actions/download-artifact@v7
141+
uses: actions/download-artifact@v8
142142
with:
143143
path: /tmp/digests/dockerhub
144144
pattern: digests-${{ matrix.image }}-dockerhub-*

0 commit comments

Comments
 (0)