Skip to content

Commit

Permalink
feat(deps): bump go.einride.tech/sage from 0.278.0 to 0.279.1 in /.sage
Browse files Browse the repository at this point in the history
Bumps [go.einride.tech/sage](https://github.com/einride/sage) from 0.278.0 to 0.279.1.
- [Release notes](https://github.com/einride/sage/releases)
- [Commits](einride/sage@v0.278.0...v0.279.1)

---
updated-dependencies:
- dependency-name: go.einride.tech/sage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and alethenorio committed May 2, 2024
1 parent 5bdc946 commit 26fdaa7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .sage/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module sage

go 1.22.1

require go.einride.tech/sage v0.278.0
require go.einride.tech/sage v0.279.1
4 changes: 2 additions & 2 deletions .sage/go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
go.einride.tech/sage v0.278.0 h1:I3J2eM/5dIo6YYuozGE2hTNEjJpIaM/jESOY7tlfwZo=
go.einride.tech/sage v0.278.0/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ=
go.einride.tech/sage v0.279.1 h1:Xq8I4eYG1aqpU8L+kasIX129q0UEyWkH+iyagi7gQgM=
go.einride.tech/sage v0.279.1/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ=
3 changes: 1 addition & 2 deletions aipcli/token.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package aipcli

import (
"encoding/json"
"io/ioutil"
"os"
"os/exec"
"path"
Expand Down Expand Up @@ -32,7 +31,7 @@ func identityTokenFromConfigFile(tokenFile string) (string, error) {
return "", err
}
configFile := path.Join(configDir, tokenFile)
file, err := ioutil.ReadFile(configFile)
file, err := os.ReadFile(configFile)
if err != nil {
return "", err
}
Expand Down

0 comments on commit 26fdaa7

Please sign in to comment.