You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey y'all! I noticed that coinbase/salus:latest still points to 3.2.5, not 3.2.6. I'm using Salus through federacy/scan-action which uses latest so I'm not able to easily specify a different tag.
Would you be able to update that latest tag?
The text was updated successfully, but these errors were encountered:
We were getting the following gosec error when using `slices.Contains`:
```
could not import slices (invalid package name: "")
```
This is because:
- `slices` was added in Go 1.21
- Support for Go 1.21 was added in gosec 2.17
- We are currently using gosec 2.15.0 and via salus 3.2.5 via federacy/scan-action which pulls `coinbase/salus:latest`
Salus 3.2.6 has been released with the gosec version bump but it isn't tagged `latest`. I've filed coinbase/salus#880 to address.
For now, the easiest thing to do was just to not use the `slices` module, which was easy because we already have a util which does the same thing.
Hey y'all! I noticed that coinbase/salus:latest still points to 3.2.5, not 3.2.6. I'm using Salus through federacy/scan-action which uses
latest
so I'm not able to easily specify a different tag.Would you be able to update that
latest
tag?The text was updated successfully, but these errors were encountered: