Skip to content

Commit 06281f0

Browse files
Bump actions/upload-artifact from 4 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 704038b commit 06281f0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
verbose: true
6161

6262
- name: Upload coverage reports
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v6
6464
with:
6565
name: coverage-report-go${{ matrix.go-version }}
6666
path: |
@@ -113,7 +113,7 @@ jobs:
113113
CGO_ENABLED=0 go build -ldflags="-w -s" -o build/${BINARY_NAME}-${GOOS}-${GOARCH} ./cmd/devbox
114114
115115
- name: Upload artifacts
116-
uses: actions/upload-artifact@v4
116+
uses: actions/upload-artifact@v6
117117
with:
118118
name: devbox-${{ matrix.goos }}-${{ matrix.goarch }}
119119
path: build/devbox*

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
token: ${{ secrets.CODECOV_TOKEN }}
5555

5656
- name: Upload coverage reports to artifacts
57-
uses: actions/upload-artifact@v4
57+
uses: actions/upload-artifact@v6
5858
with:
5959
name: coverage-reports
6060
path: |

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: npm run build
3333

3434
- name: Upload documentation artifacts
35-
uses: actions/upload-artifact@v4
35+
uses: actions/upload-artifact@v6
3636
with:
3737
name: documentation
3838
path: docs/dist/

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181

8282
- name: Upload artifacts (manual trigger)
8383
if: github.event_name == 'workflow_dispatch'
84-
uses: actions/upload-artifact@v4
84+
uses: actions/upload-artifact@v6
8585
with:
8686
name: devbox-${{ matrix.goos }}-${{ matrix.goarch }}
8787
path: build/devbox-*

0 commit comments

Comments
 (0)