From bbcfeba68af45f1b3222f1eec7da85ec62c3a4e5 Mon Sep 17 00:00:00 2001 From: Doug Gish Date: Fri, 3 May 2024 14:15:03 -0600 Subject: [PATCH] Update versions of GitHub actions used in build Addresses deprecation warnings showing up in the build. --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f753c98..e9c2a97 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,8 +16,8 @@ jobs: - name: Checkout source uses: actions/checkout@v4 - - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + - name: Setup .NET + uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.204 @@ -29,7 +29,7 @@ jobs: run: ./build.sh - name: Upload bin folder - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: bin path: IO.Eventuate.Tram/bin @@ -38,7 +38,7 @@ jobs: run: dotnet test -c Release --no-build --verbosity normal --logger trx IO.Eventuate.Tram.UnitTests/ - name: Upload unit test results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: name: unit-test-results @@ -57,7 +57,7 @@ jobs: docker stats --no-stream --all - name: Upload integration test results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: name: integration-test-results