diff options
-rw-r--r-- | .github/workflows/go.yml | 4 | ||||
-rw-r--r-- | api/graphql/gen_graphql.go | 2 | ||||
-rw-r--r-- | webui/debug_assets.go | 2 | ||||
-rw-r--r-- | webui/pack_webui.go | 2 | ||||
-rw-r--r-- | webui/packed_assets.go | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 27353e90..7846a1d6 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - go-version: [1.16.x] + go-version: [1.18.x] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} @@ -46,7 +46,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: 1.16.x + go-version: 1.18.x - name: Checkout code uses: actions/checkout@v2 diff --git a/api/graphql/gen_graphql.go b/api/graphql/gen_graphql.go index 47f2c458..19c5f1e3 100644 --- a/api/graphql/gen_graphql.go +++ b/api/graphql/gen_graphql.go @@ -1,4 +1,4 @@ -// +build ignore +//go:build ignore package main diff --git a/webui/debug_assets.go b/webui/debug_assets.go index 87ec4f6c..ffefbcab 100644 --- a/webui/debug_assets.go +++ b/webui/debug_assets.go @@ -1,4 +1,4 @@ -// +build debugwebui +//go:build debugwebui package webui diff --git a/webui/pack_webui.go b/webui/pack_webui.go index 69cac9d4..91e2053f 100644 --- a/webui/pack_webui.go +++ b/webui/pack_webui.go @@ -1,4 +1,4 @@ -// +build ignore +//go:build ignore package main diff --git a/webui/packed_assets.go b/webui/packed_assets.go index 90bc6b38..eb244920 100644 --- a/webui/packed_assets.go +++ b/webui/packed_assets.go @@ -1,6 +1,6 @@ // Code generated by vfsgen; DO NOT EDIT. -// +build !debugwebui +//go:build !debugwebui package webui |