diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c7cadf4..d188006 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -15,7 +15,7 @@ jobs: - name: Setup Go 1.21.2 uses: actions/setup-go@v5 with: - go-version: 1.21.1 + go-version: 1.21.2 - name: Run unit tests run: go test @@ -26,8 +26,8 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: stable + go-version: 1.21.2 - name: golangci-lint uses: golangci/golangci-lint-action@v6 with: - version: v1.59 + version: v1.58 diff --git a/mdrss.go b/mdrss.go index af1865b..77685eb 100644 --- a/mdrss.go +++ b/mdrss.go @@ -34,7 +34,7 @@ func updateCommand(config mdrss.Config) error { func confCommand(config mdrss.Config) error { configValues := reflect.ValueOf(config) typeOfS := configValues.Type() - mdrss.Info.Println("MDRSS v0.0.2 by Timo Kats") + mdrss.Info.Println("MDRSS v0.0.3 by Timo Kats") for i := 0; i < configValues.NumField(); i++ { if len(typeOfS.Field(i).Name) < 8 { mdrss.Info.Printf("%s\t\t%v\n", typeOfS.Field(i).Name, configValues.Field(i).Interface())