Skip to content

Commit ea1702b

Browse files
authored
Merge pull request #470 from mutagen-io/v017-backports
all: prepare for v0.17.4 release
2 parents adf0849 + 7d2bfc2 commit ea1702b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v2
3232
- uses: actions/setup-go@v2
3333
with:
34-
go-version: '1.20.11'
34+
go-version: '1.20.12'
3535
- name: "Install sha256sum"
3636
run: brew install coreutils
3737
- run: scripts/ci/setup_go.sh
@@ -72,7 +72,7 @@ jobs:
7272
timeout-minutes: 30
7373
strategy:
7474
matrix:
75-
goversion: ['1.19.13', '1.20.11']
75+
goversion: ['1.19.13', '1.20.12']
7676
steps:
7777
- uses: actions/checkout@v2
7878
- uses: actions/setup-go@v2
@@ -93,7 +93,7 @@ jobs:
9393
- uses: actions/checkout@v2
9494
- uses: actions/setup-go@v2
9595
with:
96-
go-version: '1.20.11'
96+
go-version: '1.20.12'
9797
- run: scripts/ci/setup_go.sh
9898
shell: bash
9999
- run: scripts/ci/setup_docker.sh
@@ -116,7 +116,7 @@ jobs:
116116
- uses: actions/checkout@v2
117117
- uses: actions/setup-go@v2
118118
with:
119-
go-version: '1.20.11'
119+
go-version: '1.20.12'
120120
- uses: docker/setup-qemu-action@v1
121121
- uses: docker/setup-buildx-action@v1
122122
- uses: docker/login-action@v1

images/sidecar/linux/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use an Alpine-based Go builder.
2-
FROM golang:1.20.11-alpine3.18 AS builder
2+
FROM golang:1.20.12-alpine3.18 AS builder
33

44
# Disable cgo in order to match the behavior of our release binaries (and to
55
# avoid the need for gcc on certain architectures).

pkg/mutagen/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const (
1515
// VersionMinor represents the current minor version of Mutagen.
1616
VersionMinor = 17
1717
// VersionPatch represents the current patch version of Mutagen.
18-
VersionPatch = 3
18+
VersionPatch = 4
1919
// VersionTag represents a tag to be appended to the Mutagen version string.
2020
// It must not contain spaces. If empty, no tag is appended to the version
2121
// string.

0 commit comments

Comments
 (0)