Skip to content

Commit 5543143

Browse files
committed
chore: rm ioutil from cmd
1 parent ed37370 commit 5543143

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cmd/dependencyverifier/dependencyverifier.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import (
2020
"bytes"
2121
"encoding/json"
2222
"fmt"
23-
"io/ioutil"
2423
"log"
2524
"os"
2625
"os/exec"
@@ -275,7 +274,7 @@ func main() {
275274
}
276275
}
277276

278-
vendorModulesTxt, err := ioutil.ReadFile("vendor/modules.txt")
277+
vendorModulesTxt, err := os.ReadFile("vendor/modules.txt")
279278
if err != nil {
280279
log.Fatal(err)
281280
}

0 commit comments

Comments
 (0)