From 9f2f48afa285b996b15762c79140d6cf9748635e Mon Sep 17 00:00:00 2001 From: Eric Veilleux Date: Fri, 1 May 2026 19:34:21 -0400 Subject: [PATCH] Update GitHub Actions to use latest action versions --- .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 55cdc2c..9a339ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: submodules: 'recursive' @@ -28,7 +28,7 @@ jobs: run: dotnet publish RLBotCS -r win-x64 - name: Upload build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: RLBotServer-windows path: ./**/publish/RLBotServer.exe @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: submodules: 'recursive' @@ -54,7 +54,7 @@ jobs: run: dotnet publish RLBotCS -r linux-x64 - name: Upload build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: RLBotServer-ubuntu path: ./**/publish/RLBotServer @@ -68,7 +68,7 @@ jobs: contents: write steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: merge-multiple: "true" - name: Publish to GitHub Releases