Skip to content

Commit b6118b1

Browse files
Merge pull request #317 from depot/feat/bake-csv-and-object-support
feat: port bake object syntax
2 parents c513f4d + 37b0411 commit b6118b1

30 files changed

+3581
-296
lines changed

Diff for: .github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-go@v5
1313
with:
14-
go-version: "1.21"
14+
go-version: "1.22"
1515
check-latest: true
1616
cache: true
1717

@@ -74,7 +74,7 @@ jobs:
7474
- uses: actions/checkout@v4
7575
- uses: actions/setup-go@v5
7676
with:
77-
go-version: "1.21"
77+
go-version: "1.22"
7878
check-latest: true
7979
cache: true
8080

Diff for: .golangci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
run:
2-
go: "1.21"
2+
go: "1.22"

Diff for: .tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
golang 1.21.8
1+
golang 1.22.12

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=$BUILDPLATFORM golang:1.21 AS build
1+
FROM --platform=$BUILDPLATFORM golang:1.22 AS build
22
WORKDIR /src
33
ARG LDFLAGS
44
ARG TARGETARCH

Diff for: examples/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/depot/cli/examples
22

3-
go 1.21
3+
go 1.22
44

55
require (
66
github.com/depot/cli v1.8.3

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/depot/cli
22

3-
go 1.21
3+
go 1.22
44

55
require (
66
buf.build/gen/go/depot/api/connectrpc/go v1.15.0-20240221184445-e8316610338f.1

0 commit comments

Comments
 (0)