From 605b49e28b49d58f118e0baa3954e6647dbe3ae4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 02:46:15 +0000 Subject: [PATCH] chore(deps): bump the all-actions group with 5 updates Bumps the all-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6` | `7` | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6` | `8` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2` | `3` | Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/setup-dotnet` from 5 to 6 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v5...v6) Updates `actions/upload-artifact` from 5 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v7) Updates `actions/download-artifact` from 6 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v8) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-dotnet dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- .github/workflows/release.yml | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 46cca70..b118282 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,12 +12,12 @@ jobs: steps: - name: Checkout API repo into subfolder - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: SurfTimer.Api - name: Checkout Shared repo (sibling folder) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: tslashd/SurfTimer.Shared path: SurfTimer.Shared @@ -25,7 +25,7 @@ jobs: # token: ${{ secrets.SHARED_REPO_PAT }} - name: Setup .NET - uses: actions/setup-dotnet@v5 + uses: actions/setup-dotnet@v6 with: dotnet-version: 8.0.x diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c4446a..7ab1137 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,13 +41,13 @@ jobs: echo "tag=$TAG" >> $GITHUB_OUTPUT - name: Checkout API repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: SurfTimer.Api ref: ${{ env.RELEASE_TAG }} - name: Checkout Shared repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: tslashd/SurfTimer.Shared path: SurfTimer.Shared @@ -57,7 +57,7 @@ jobs: # ref: v1.2.3 - name: Setup .NET - uses: actions/setup-dotnet@v5 + uses: actions/setup-dotnet@v6 with: dotnet-version: 8.0.x @@ -99,7 +99,7 @@ jobs: sha256sum "SurfTimer.Api-${RELEASE_TAG}-${{ matrix.rid }}.zip" > "SurfTimer.Api-${RELEASE_TAG}-${{ matrix.rid }}.zip.sha256" - name: Upload artifact (${{ matrix.rid }}) - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: SurfTimer.Api-${{ env.RELEASE_TAG }}-${{ matrix.rid }} path: | @@ -112,7 +112,7 @@ jobs: steps: - name: Download artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: path: ./artifacts @@ -131,7 +131,7 @@ jobs: run: ls -R ./artifacts - name: Create GitHub Release and upload assets - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: ${{ steps.vars.outputs.tag }} name: SurfTimer.Api ${{ steps.vars.outputs.tag }}