From dae4231810d9afc68a8431d3294c3c445627f130 Mon Sep 17 00:00:00 2001 From: Guillaume Lours Date: Tue, 26 Jul 2022 10:42:38 +0200 Subject: [PATCH] remove usage of GO111MODULE option in gh actions Signed-off-by: Guillaume Lours --- .github/workflows/ci.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 203ac6734..4882cf4c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,8 +17,6 @@ jobs: lint: name: Lint runs-on: ubuntu-latest - env: - GO111MODULE: "on" steps: - name: Checkout code into the Go module directory uses: actions/checkout@v3 @@ -44,8 +42,6 @@ jobs: name: Validate cross build runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' - env: - GO111MODULE: "on" steps: - name: Checkout code into the Go module directory uses: actions/checkout@v3 @@ -64,8 +60,6 @@ jobs: build-plugin: name: Build and tests in plugin mode runs-on: ubuntu-latest - env: - GO111MODULE: "on" steps: - name: Checkout code into the Go module directory uses: actions/checkout@v3 @@ -95,8 +89,6 @@ jobs: build-standalone: name: Build and tests in standalone mode runs-on: ubuntu-latest - env: - GO111MODULE: "on" steps: - name: Checkout code into the Go module directory uses: actions/checkout@v3