From 709ef1d4197091b27b05c401cc5547e834e1e5be Mon Sep 17 00:00:00 2001 From: Vijai Kumar S <2363451+vijaiaeroastro@users.noreply.github.com> Date: Wed, 9 Oct 2024 17:18:12 +0200 Subject: [PATCH 1/4] Update build.yml --- .github/workflows/build.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 59fc2729..c832c80c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,7 @@ jobs: build-linux: runs-on: ubuntu-18.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: submodules: true - run: ./build.sh @@ -12,7 +12,7 @@ jobs: build-macos: runs-on: macos-10.15 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: submodules: true - run: ./build.sh @@ -20,48 +20,48 @@ jobs: build-windows: runs-on: windows-2019 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: submodules: true - run: ./build.bat working-directory: ./Build - name: Upload Windows 64bit Binary - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: act.win64.exe path: act.win64.exe - name: Upload Windows 32bit Binary - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: act.win32.exe path: act.win32.exe - name: Upload MacOS Binary - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: act.darwin path: act.darwin - name: Upload MacOS ARM Binary - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: act.arm.darwin path: act.arm.darwin - name: Upload Linux 32bit Binary - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: act.linux32 path: act.linux32 - name: Upload Linux ARM 32bit Binary - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: act.arm.linux32 path: act.arm.linux32 - name: Upload Linux 64bit Binary - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: act.linux64 path: act.linux64 - name: Upload Linux ARM 64bit Binary - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: act.arm.linux64 path: act.arm.linux64 From 2a6e9d693934314d491b02ceb53139e6242f0b8c Mon Sep 17 00:00:00 2001 From: gangatp Date: Mon, 14 Oct 2024 20:57:52 +0530 Subject: [PATCH 2/4] Update build.yml --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c832c80c..9bd28d6d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ on: [push, pull_request] name: Build jobs: build-linux: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: @@ -10,7 +10,7 @@ jobs: - run: ./build.sh working-directory: ./Build build-macos: - runs-on: macos-10.15 + runs-on: macos-latest steps: - uses: actions/checkout@v4 with: From 2b5c1d20277d96fd85a75fa1145df2472b0b3df4 Mon Sep 17 00:00:00 2001 From: gangatp Date: Mon, 14 Oct 2024 21:02:43 +0530 Subject: [PATCH 3/4] Update build.yml --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9bd28d6d..8aa640c5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,6 +15,7 @@ jobs: - uses: actions/checkout@v4 with: submodules: true + - uses: actions/setup-go@v5.0.2 - run: ./build.sh working-directory: ./Build build-windows: From 3bb106c67799449f0b9f4c62b9c62624eb5310ce Mon Sep 17 00:00:00 2001 From: gangatp Date: Mon, 14 Oct 2024 21:05:04 +0530 Subject: [PATCH 4/4] Update build.yml --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8aa640c5..e5bc6f27 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,8 @@ jobs: with: submodules: true - uses: actions/setup-go@v5.0.2 + with: + go-version: '1.23.2' - run: ./build.sh working-directory: ./Build build-windows: