From db709896d6e2b9b0ec69d1a23138d60790a6398f Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Sun, 16 Feb 2025 20:52:25 +0200 Subject: [PATCH] ci: add missing environment variable --- .github/workflows/go.yml | 3 +++ .gitlab-ci.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 8a93b65..2d3bd11 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -2,6 +2,9 @@ name: Go on: [push, pull_request] +env: + GOTOOLCHAIN: local + jobs: lint: runs-on: ubuntu-latest diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e1c09a7..2fd3ac1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,6 +13,9 @@ cache: paths: - .cache +variables: + GOTOOLCHAIN: local + frontend: image: node:22-alpine stage: frontend