From 820fe640406366dcd1a751d339e64f374b13250c Mon Sep 17 00:00:00 2001 From: ivanovac Date: Tue, 24 Feb 2026 13:24:22 +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 cc08c20c6..eb162fb7b 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 @@ -53,7 +53,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: stable + go-version: '1.24' - name: Checkout uses: actions/checkout@v4