Skip to content

Commit

Permalink
Update most of our dev tools to their latest versions (#756)
Browse files Browse the repository at this point in the history
I mostly did this to get a new `ubi` version, since that has a fix for an issue that one of our team members encountered.

This does _not_ upgrade the following:

* `eslint` - would require rewriting our config to a new format
* `golangci-lint` - would require fixing a bunch of new issues it found.
* `gosec` - also finds new issues, all of which appear to be spurious, but this deserves its own PR with a bit more attention.
  • Loading branch information
autarch authored Feb 4, 2025
1 parent a794b83 commit bcdfe1c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions buildscript/sa.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

const (
goimportsVersion = "v0.22.0"
goimportsVersion = "v0.29.0"
goimportsPkg = "golang.org/x/tools/cmd/goimports@" + goimportsVersion

// For JS tools like eslint and prettier, these versions need to match the ones in the
Expand All @@ -32,9 +32,9 @@ const (
golangCILintVersion = "1.59.1"
golinesVersion = "0.12.2"
gosecVersion = "2.20.0"
preciousVersion = "0.7.2"
ubiVersion = "0.0.18"
prettierVersion = "3.3.1"
preciousVersion = "0.7.3"
ubiVersion = "0.4.2"
prettierVersion = "3.4.2"
)

func SAInstallDevTools(ctx *task.Context) error {
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"devDependencies": {
"eslint": "8.57.0",
"prettier": "3.3.1"
"prettier": "3.4.2"
}
}

0 comments on commit bcdfe1c

Please sign in to comment.