Compare commits

...

2 Commits

Author SHA1 Message Date
cc1e175c83 Try to prevent Google AppEngine from being updated to v2
All checks were successful
Build and push container image / build (push) Successful in 41s
2023-10-23 23:14:38 +11:00
2f3c3a6def Fix dependency issue 2023-10-23 23:12:00 +11:00
2 changed files with 9 additions and 2 deletions

2
go.mod
View File

@ -31,6 +31,6 @@ require (
golang.org/x/crypto v0.14.0 // indirect golang.org/x/crypto v0.14.0 // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/sys v0.13.0 // indirect golang.org/x/sys v0.13.0 // indirect
google.golang.org/appengine/v2 v2.0.5 // indirect google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.31.0 // indirect google.golang.org/protobuf v1.31.0 // indirect
) )

View File

@ -40,7 +40,14 @@
{ {
"matchManagers": ["docker-compose"], "matchManagers": ["docker-compose"],
"matchUpdateTypes": ["pin", "digest"], "matchUpdateTypes": ["pin", "digest"],
"enabled": false "enabled": true
},
{
"matchDepNames": [
"google.golang.org/appengine/v2"
],
"matchUpdateTypes": ["pin", "digest"],
"enabled": true
} }
] ]
} }