Fix gitpod golang version (#5093)

Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
Co-authored-by: Robert Kaussow <xoxys@rknet.org>
This commit is contained in:
Lukas 2025-04-16 08:44:42 +02:00 committed by GitHub
parent dc80530293
commit 131d4afd1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,14 +3,14 @@ tasks:
env: env:
WOODPECKER_OPEN: true WOODPECKER_OPEN: true
WOODPECKER_ADMIN: woodpecker WOODPECKER_ADMIN: woodpecker
WOODPECKER_HOST: http://host.docker.internal:8000
WOODPECKER_EXPERT_WEBHOOK_HOST: http://host.docker.internal:8000 WOODPECKER_EXPERT_WEBHOOK_HOST: http://host.docker.internal:8000
WOODPECKER_AGENT_SECRET: '1234' WOODPECKER_AGENT_SECRET: '1234'
WOODPECKER_GITEA: true WOODPECKER_GITEA: true
WOODPECKER_DEV_WWW_PROXY: http://localhost:8010 WOODPECKER_DEV_WWW_PROXY: http://localhost:8010
WOODPECKER_BACKEND_DOCKER_NETWORK: ci_default WOODPECKER_BACKEND_DOCKER_NETWORK: ci_default
init: | init: |
GO_VERSION=1.22 # renovate: datasource=golang-version depName=golang
GO_VERSION=1.24.2
rm -rf ~/go rm -rf ~/go
curl -fsSL https://dl.google.com/go/go$GO_VERSION.linux-amd64.tar.gz | tar xzs -C ~/ curl -fsSL https://dl.google.com/go/go$GO_VERSION.linux-amd64.tar.gz | tar xzs -C ~/
go mod tidy go mod tidy