Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.23
go-version: 1.26

- name: Tag and Deploy
run: |
Expand All @@ -66,7 +66,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.23
go-version: 1.26
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
Expand Down
3 changes: 1 addition & 2 deletions internal/reader/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ package reader

import (
"fmt"
"io/ioutil"
"os"
"path"
"sort"
Expand Down Expand Up @@ -161,7 +160,7 @@ func List() ([]*SavedParamsWrapper, error) {
if err != nil {
return nil, err
}
files, err := ioutil.ReadDir(paramsDir)
files, err := os.ReadDir(paramsDir)
if err != nil {
return nil, err
}
Expand Down
4 changes: 2 additions & 2 deletions internal/uitest/helper/json_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ import (
"encoding/json"
"fmt"
"io"
"io/ioutil"
"math/rand"
"os"
"time"

"github.com/google/uuid"
)

func JsonGenerator(writer io.Writer) {
b, err := ioutil.ReadFile("internal/testdata/test1.json")
b, err := os.ReadFile("internal/testdata/test1.json")
if err != nil {
panic(err)
}
Expand Down
3 changes: 1 addition & 2 deletions internal/uitest/helper/json_gen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"math/rand"
"os"
"time"
Expand All @@ -37,7 +36,7 @@ import (
const datelayout = "2006-01-02T15:04:05-0700"

func main() {
b, err := ioutil.ReadFile("internal/testdata/test1.json")
b, err := os.ReadFile("internal/testdata/test1.json")
if err != nil {
panic(err)
}
Expand Down
Loading