From d3aaf02209dee82b618970e1f311a197e260575b Mon Sep 17 00:00:00 2001 From: ivanovac Date: Tue, 24 Feb 2026 13:24:19 +0200 Subject: [PATCH] Pin Go to 1.24 in test-pull-request workflow Go 1.26 introduced breaking changes that prevent zip file creation for buildpack archives. Pin to Go 1.24 until the issue is resolved. --- .github/workflows/test-pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index 9d4db2d88..9cc9deea7 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -14,7 +14,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: stable + go-version: '1.24' - name: Checkout uses: actions/checkout@v4 @@ -56,7 +56,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: stable + go-version: '1.24' - name: Checkout uses: actions/checkout@v4