Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ require (
github.com/opencontainers/go-digest v1.0.0
github.com/paketo-buildpacks/occam v0.31.0
github.com/paketo-buildpacks/packit/v2 v2.25.3
github.com/pelletier/go-toml v1.9.5
github.com/pelletier/go-toml/v2 v2.2.4
github.com/sclevine/spec v1.4.0
github.com/spf13/cobra v1.10.2
golang.org/x/exp v0.0.0-20250911091902-df9299821621
Expand Down Expand Up @@ -252,7 +252,7 @@ require (
github.com/opencontainers/selinux v1.13.0 // indirect
github.com/paketo-buildpacks/freezer v0.2.2 // indirect
github.com/pborman/indent v1.2.1 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pierrec/lz4/v4 v4.1.22 // indirect
github.com/pjbgf/sha1cd v0.3.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
Expand Down
2 changes: 1 addition & 1 deletion internal/builder_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"strings"

"github.com/pelletier/go-toml"
"github.com/pelletier/go-toml/v2"
)

type BuilderConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/buildpack_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/pelletier/go-toml"
"github.com/pelletier/go-toml/v2"
)

type BuildpackConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/package_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"strings"

"github.com/pelletier/go-toml"
"github.com/pelletier/go-toml/v2"
)

type PackageConfig struct {
Expand Down
Loading