From 05cdda0d5bbae3303e5564245422fc2292cfdca1 Mon Sep 17 00:00:00 2001 From: drizzentic Date: Thu, 5 Mar 2026 15:00:25 +0300 Subject: [PATCH 1/2] Remove unnecessary blank line in go.mod file --- cli/src/go.mod | 1 - 1 file changed, 1 deletion(-) diff --git a/cli/src/go.mod b/cli/src/go.mod index d6559f4..4ab0332 100644 --- a/cli/src/go.mod +++ b/cli/src/go.mod @@ -2,7 +2,6 @@ module cli go 1.23.0 - require ( github.com/cucumber/godog v0.12.5 github.com/docker/cli v26.1.3+incompatible From 7a58f5352307deb1ed1ad3f6c09a1a756ba2c9a8 Mon Sep 17 00:00:00 2001 From: drizzentic Date: Thu, 5 Mar 2026 15:03:26 +0300 Subject: [PATCH 2/2] Refactor GitHub Actions workflow for Go CLI release - Updated Go version to 1.23.0 - Cleaned up formatting for better readability --- .github/workflows/release-go-cli.yaml | 42 +++++++++++++-------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/release-go-cli.yaml b/.github/workflows/release-go-cli.yaml index 7ddc6c5..60539f0 100644 --- a/.github/workflows/release-go-cli.yaml +++ b/.github/workflows/release-go-cli.yaml @@ -9,28 +9,28 @@ jobs: build: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2 - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.23 + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.23.0 - - name: Build go-cli binary releases - run: cd ./cli && ./buildreleases.sh + - name: Build go-cli binary releases + run: cd ./cli && ./buildreleases.sh - - name: Create release - uses: ncipollo/release-action@v1 - with: - allowUpdates: true - artifacts: ./cli/bin/instant-linux,./cli/bin/instant-macos,./cli/bin/instant-win.exe - tag: latest - commit: main + - name: Create release + uses: ncipollo/release-action@v1 + with: + allowUpdates: true + artifacts: ./cli/bin/instant-linux,./cli/bin/instant-macos,./cli/bin/instant-win.exe + tag: latest + commit: main - - name: Release binaries to referenced tag - uses: softprops/action-gh-release@v1 - with: - files: | - ./cli/bin/instant-linux - ./cli/bin/instant-macos - ./cli/bin/instant-win.exe + - name: Release binaries to referenced tag + uses: softprops/action-gh-release@v1 + with: + files: | + ./cli/bin/instant-linux + ./cli/bin/instant-macos + ./cli/bin/instant-win.exe