Skip to content

Commit 5a514a5

Browse files
dependabot[bot]mahendrapaipuri
authored andcommitted
build(deps): Bump the actions-dependencies group with 2 updates
Bumps the actions-dependencies group with 2 updates: [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-dependencies - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a49cbe9 commit 5a514a5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
go mod download
9696
9797
- name: Download release artifacts
98-
uses: actions/download-artifact@v5
98+
uses: actions/download-artifact@v6
9999
with:
100100
name: release-artifacts
101101
path: .tarballs

.github/workflows/step_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: CGO_APPS=1 make crossbuild-test
5454

5555
- name: Upload go build artifacts
56-
uses: actions/upload-artifact@v4
56+
uses: actions/upload-artifact@v5
5757
with:
5858
name: build-artifacts
5959
# Here we add .tarballs to path even if there is no .tarballs. This is to be

.github/workflows/step_cross-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
promu checksum .tarballs
6464
6565
- name: Upload go build artifacts
66-
uses: actions/upload-artifact@v4
66+
uses: actions/upload-artifact@v5
6767
with:
6868
name: build-artifacts
6969
path: |

.github/workflows/step_images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
fi
5252
5353
- name: Download go build artifacts
54-
uses: actions/download-artifact@v5
54+
uses: actions/download-artifact@v6
5555
with:
5656
name: build-artifacts
5757

.github/workflows/step_packaging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: go install github.com/goreleaser/nfpm/v2/cmd/nfpm@latest
2222

2323
- name: Download go build artifacts
24-
uses: actions/download-artifact@v5
24+
uses: actions/download-artifact@v6
2525
with:
2626
name: build-artifacts
2727

@@ -44,7 +44,7 @@ jobs:
4444
run: ./scripts/packaging.sh -v ${{ steps.vars.outputs.version }} -t
4545

4646
- name: Upload release artifacts
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v5
4848
with:
4949
name: release-artifacts
5050
path: .tarballs

0 commit comments

Comments
 (0)