From 2ace95467e366c0edbdb8a2077f377cae31281f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 19:07:41 +0000 Subject: [PATCH] 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 4.6.1 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.6.1...v4.6.2) Updates `actions/download-artifact` from 4.1.9 to 4.2.1 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4.1.9...v4.2.1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/release.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c3eeb3..59573ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,14 +78,14 @@ jobs: - name: Upload artifacts if: matrix.os == 'ubuntu-latest' - uses: actions/upload-artifact@v4.6.1 + uses: actions/upload-artifact@v4.6.2 with: name: nupkg path: ./artifacts/*.nupkg - name: Upload test results if: failure() - uses: actions/upload-artifact@v4.6.1 + uses: actions/upload-artifact@v4.6.2 with: name: build-verify-test-results path: | @@ -131,7 +131,7 @@ jobs: nuget_auth_token: ${{ secrets.GITHUB_TOKEN }} - name: Download nupkg - uses: actions/download-artifact@v4.1.9 + uses: actions/download-artifact@v4.2.1 with: name: nupkg path: .nuget @@ -179,7 +179,7 @@ jobs: - name: Upload test results if: failure() - uses: actions/upload-artifact@v4.6.1 + uses: actions/upload-artifact@v4.6.2 with: name: integration-verify-test-results path: | @@ -199,7 +199,7 @@ jobs: steps: - name: Download nupkg - uses: actions/download-artifact@v4.1.9 + uses: actions/download-artifact@v4.2.1 with: name: nupkg diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f75e910..fb9a4fa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: - run: dotnet r pack -- --no-build - name: Upload artifacts - uses: actions/upload-artifact@v4.6.1 + uses: actions/upload-artifact@v4.6.2 with: name: nupkg path: ./artifacts/*.nupkg @@ -83,7 +83,7 @@ jobs: - name: Upload test results if: failure() - uses: actions/upload-artifact@v4.6.1 + uses: actions/upload-artifact@v4.6.2 with: name: verify-test-results path: |