remove usage of GO111MODULE option in gh actions

Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
This commit is contained in:
Guillaume Lours 2022-07-26 10:42:38 +02:00
parent a4c2c4a832
commit dae4231810
No known key found for this signature in database
1 changed files with 0 additions and 8 deletions

View File

@ -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