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

Build with Go 1.19 #39

Merged
merged 1 commit into from
Sep 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.18.x
go-version: 1.19.x
- name: Setup Cosign
uses: sigstore/cosign-installer@main
- name: Setup Syft
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.libgit2-only
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This Dockerfile builds and packages libgit2 only (not linked with openssl and libssh2)

ARG BASE_VARIANT=alpine
ARG GO_VERSION=1.18
ARG GO_VERSION=1.19
ARG XX_VERSION=1.1.2

FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.test-libgit2-only
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This Dockerfile builds and packages libgit2 only (not linked with openssl and libssh2); and tests it against git2go.

ARG BASE_VARIANT=alpine
ARG GO_VERSION=1.18
ARG GO_VERSION=1.19
ARG XX_VERSION=1.1.2

FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx
Expand Down
2 changes: 1 addition & 1 deletion tests/smoketest/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/fluxcd/golang-with-libgit2/tests/sample

go 1.18
go 1.19

// A temporary fork of git2go was created to enable use
// of libgit2 without thread support to fix:
Expand Down