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 }}