Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Bump Golang to 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
vania-pooh committed Sep 3, 2021
1 parent 63665d1 commit dd4a7af
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v2
with:
go-version: 1.15.x
go-version: 1.17.x

- uses: actions/cache@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v2
with:
go-version: 1.15.x
go-version: 1.17.x

- uses: actions/cache@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v2
with:
go-version: 1.15.x
go-version: 1.17.x

- uses: actions/cache@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/aerokube/images

go 1.15
go 1.17

require (
github.com/aandryashin/matchers v0.0.0-20161126170413-435295ea180e
Expand Down
2 changes: 1 addition & 1 deletion selenium/android/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.15 as go
FROM golang:1.17 as go

COPY tmp/devtools /devtools

Expand Down
2 changes: 1 addition & 1 deletion selenium/base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.15 as go
FROM golang:1.17 as go

COPY xseld /xseld

Expand Down
2 changes: 1 addition & 1 deletion selenium/base/fileserver/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module fileserver

go 1.15
go 1.17

require github.com/aandryashin/matchers v0.0.0-20161126170413-435295ea180e
2 changes: 1 addition & 1 deletion selenium/external-host/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.15 as go
FROM golang:1.17 as go

COPY choose /choose

Expand Down
2 changes: 1 addition & 1 deletion static/chrome/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG VERSION
FROM golang:1.15 as go
FROM golang:1.17 as go

COPY devtools /devtools

Expand Down

0 comments on commit dd4a7af

Please sign in to comment.