diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d74ee8b3..1c34d0685 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: '1.19.5' + go-version: '1.19.6' - name: "Install sha256sum" run: brew install coreutils - run: scripts/ci/setup_go.sh @@ -74,7 +74,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: '1.19.5' + go-version: '1.19.6' - run: scripts/ci/setup_go.sh - run: scripts/ci/setup_ssh.sh - run: scripts/ci/setup_docker.sh @@ -90,7 +90,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: '1.19.5' + go-version: '1.19.6' - run: scripts/ci/setup_go.sh shell: bash - run: scripts/ci/setup_docker.sh @@ -113,7 +113,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: '1.19.5' + go-version: '1.19.6' - uses: docker/setup-qemu-action@v1 - uses: docker/setup-buildx-action@v1 - uses: docker/login-action@v1 diff --git a/images/sidecar/linux/Dockerfile b/images/sidecar/linux/Dockerfile index 8f7b2b278..6268678d0 100644 --- a/images/sidecar/linux/Dockerfile +++ b/images/sidecar/linux/Dockerfile @@ -1,5 +1,5 @@ # Use an Alpine-based Go builder. -FROM golang:1.19.5-alpine3.17 AS builder +FROM golang:1.19.6-alpine3.17 AS builder # Disable cgo in order to match the behavior of our release binaries (and to # avoid the need for gcc on certain architectures). @@ -21,7 +21,7 @@ RUN ["go", "build", "-o", "mutagen-agent-enhanced", "-tags", "sspl,fanotify", ". # Switch to a vanilla Alpine base for the final image. -FROM alpine:3.16 AS base +FROM alpine:3.17 AS base # Copy the sidecar entry point from the builder. COPY --from=builder ["/mutagen/mutagen-sidecar", "/usr/bin/mutagen-sidecar"] diff --git a/pkg/mutagen/version.go b/pkg/mutagen/version.go index a7d914bed..5b4722fee 100644 --- a/pkg/mutagen/version.go +++ b/pkg/mutagen/version.go @@ -15,7 +15,7 @@ const ( // VersionMinor represents the current minor version of Mutagen. VersionMinor = 16 // VersionPatch represents the current patch version of Mutagen. - VersionPatch = 4 + VersionPatch = 5 // VersionTag represents a tag to be appended to the Mutagen version string. // It must not contain spaces. If empty, no tag is appended to the version // string.