From 2b3b0a60cec6a52db25e8bacc706bf290251f9cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 22:37:06 +0000 Subject: [PATCH] chore(deps): bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). 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) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/_ci.yml | 2 +- .github/workflows/_release.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/_ci.yml b/.github/workflows/_ci.yml index b4328c4..839a236 100644 --- a/.github/workflows/_ci.yml +++ b/.github/workflows/_ci.yml @@ -134,7 +134,7 @@ jobs: tar -czvf ${{ matrix.artifact_name }}.tar.gz -C "target/${{ matrix.target }}/release" "${{ matrix.binary_name }}" fi - name: Upload Build Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact_name }} path: ${{ matrix.artifact_name }}.* diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index 5f83966..59f4020 100644 --- a/.github/workflows/_release.yml +++ b/.github/workflows/_release.yml @@ -32,17 +32,17 @@ jobs: args: --latest --strip header - name: Download Linux Build - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: gitopolis-linux-x86_64 - name: Download Windows Build - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: gitopolis-windows-x86_64 - name: Download macOS Build - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: gitopolis-macos-x86_64