From 47aeee4e46e6bac839021d1e0ed11e2ece3efd45 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 01:15:24 +0000 Subject: [PATCH] Bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...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] --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74aa7e6..455c460 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: if: runner.os != 'Windows' run: | cd bin && tar -cJf ldcup-${{ matrix.os }}-${{ matrix.arch }}.tar.xz * - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') with: name: ldcup-${{ matrix.os }}-${{ matrix.arch }} @@ -105,7 +105,7 @@ jobs: dub -b release -- list -v dub -b release -- run -v -- --version tar -cJf bin/ldcup-freebsd14.3-${{ matrix.arch }}.tar.xz -C bin . - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') with: name: ldcup-freebsd-14.3-amd64 @@ -152,7 +152,7 @@ jobs: - name: Compress artifacts run: | cd bin && tar -cJf ldcup-alpine-${{ matrix.arch }}.tar.xz * - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') with: name: ldcup-alpine-${{ matrix.arch }}