Skip to content

Commit

Permalink
Go 1.17.3, 1.16.10
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed Nov 11, 2021
1 parent 57ad739 commit e45cca7
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ jobs:
needs: [ base ]
env:
BASE_IMAGE: ghcr.io/crazy-max/xgo:base
LATEST_117: 1.17.2
LATEST_116: 1.16.9
LATEST_117: 1.17.3
LATEST_116: 1.16.10
strategy:
fail-fast: false
matrix:
Expand All @@ -106,9 +106,11 @@ jobs:
- 1.16.7
- 1.16.8
- 1.16.9
- 1.16.10
- 1.17.0
- 1.17.1
- 1.17.2
- 1.17.3
steps:
-
name: Checkout
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.7.5 (2021/11/11)

* Go 1.17.3, 1.16.10

## 0.7.4 (2021/10/14)

* Go 1.17.2, 1.16.9
Expand Down
20 changes: 18 additions & 2 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,15 @@ target "go" {
}

target "go-1.17" {
inherits = ["go-1.17.2"]
inherits = ["go-1.17.3"]
}

target "go-1.17.3" {
inherits = ["go"]
args = {
GO_VERSION = "1.17.3"
GO_DIST_SHA = "550f9845451c0c94be679faf116291e7807a8d78b43149f9506c1b15eb89008c"
}
}

target "go-1.17.2" {
Expand Down Expand Up @@ -158,7 +166,15 @@ target "go-1.17.0" {
}

target "go-1.16" {
inherits = ["go-1.16.9"]
inherits = ["go-1.16.10"]
}

target "go-1.16.10" {
inherits = ["go"]
args = {
GO_VERSION = "1.16.10"
GO_DIST_SHA = "414cd18ce1d193769b9e97d2401ad718755ab47816e13b2a1cde203d263b55cf"
}
}

target "go-1.16.9" {
Expand Down

0 comments on commit e45cca7

Please sign in to comment.