Skip to content

Commit 0609dbb

Browse files
ci: bump actions/upload-artifact from 4.6.2 to 7.0.0 (#165)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.2 to 7.0.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@ea165f8...bbbca2d) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0b7e360 commit 0609dbb

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ jobs:
254254
GOOS=darwin GOARCH=arm64 go build -o bin/darwin-arm64/app ./src/cmd/app
255255
256256
- name: Upload artifacts
257-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
257+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
258258
with:
259259
name: binaries
260260
path: cli/bin/
@@ -361,7 +361,7 @@ jobs:
361361

362362
- name: Upload test logs on failure
363363
if: failure()
364-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
364+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
365365
with:
366366
name: integration-test-logs-${{ matrix.os }}
367367
path: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
GOOS=darwin GOARCH=arm64 go build -o bin/darwin-arm64/app ./src/cmd/app
204204
205205
- name: Upload artifacts
206-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
206+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
207207
with:
208208
name: binaries
209209
path: cli/bin/

.github/workflows/website.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ jobs:
7272
7373
- name: Upload production artifact
7474
if: github.event_name != 'pull_request'
75-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
75+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
7676
with:
7777
name: production-build
7878
path: web/dist
7979
retention-days: 1
8080

8181
- name: Upload PR preview artifact
8282
if: github.event_name == 'pull_request'
83-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
83+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
8484
with:
8585
name: pr-preview-${{ github.event.pull_request.number }}
8686
path: web/dist

0 commit comments

Comments
 (0)