From d0d443f82c5870764b3d3393528a32886d1b20d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 06:49:37 +0000 Subject: [PATCH] Bump the github-actions-all group with 3 updates Bumps the github-actions-all group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) Updates `goreleaser/goreleaser-action` from 6 to 7 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](https://github.com/goreleaser/goreleaser-action/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: goreleaser/goreleaser-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8360ea7..d2a1788 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: working-directory: ./client run: bun run build - name: Upload frontend build - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: client-dist path: client/dist @@ -39,7 +39,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Download frontend build - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: client-dist path: client/dist @@ -50,7 +50,7 @@ jobs: - run: go build -o ./build/ -v ./server - name: Upload backend executable - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: web-tail-${{ matrix.os }} path: build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a2f179..822a70a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: go-version: stable - name: run goreleaser - uses: goreleaser/goreleaser-action@v6 + uses: goreleaser/goreleaser-action@v7 with: version: "~> v2" args: release --clean