-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore interpolated references during parsing (#97)
This fixes the issue where Ratchet completely fails because there's a GitHub Actions reference that uses interpolation. Those references will now be ignored.
- Loading branch information
Showing
7 changed files
with
77 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,30 @@ | ||
module github.com/sethvargo/ratchet | ||
|
||
go 1.22.0 | ||
go 1.23.0 | ||
|
||
toolchain go1.23.3 | ||
toolchain go1.23.5 | ||
|
||
require ( | ||
github.com/braydonk/yaml v0.7.0 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/go-containerregistry v0.20.2 | ||
github.com/google/go-containerregistry v0.20.3 | ||
github.com/google/go-github/v58 v58.0.0 | ||
golang.org/x/oauth2 v0.24.0 | ||
golang.org/x/sync v0.9.0 | ||
golang.org/x/oauth2 v0.25.0 | ||
golang.org/x/sync v0.10.0 | ||
) | ||
|
||
require ( | ||
github.com/containerd/stargz-snapshotter/estargz v0.16.1 // indirect | ||
github.com/docker/cli v27.3.1+incompatible // indirect | ||
github.com/containerd/stargz-snapshotter/estargz v0.16.3 // indirect | ||
github.com/docker/cli v27.5.1+incompatible // indirect | ||
github.com/docker/distribution v2.8.3+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.8.2 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.1.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/vbatts/tar-split v0.11.6 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
github.com/vbatts/tar-split v0.11.7 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters