diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9e67912..4ecdb33 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,6 +29,6 @@ jobs: go-version-file: "go.mod" check-latest: true - - uses: "golangci/golangci-lint-action@v3.7.1" + - uses: "golangci/golangci-lint-action@v6.0.1" with: skip-pkg-cache: true diff --git a/internal/provider/resource_device.go b/internal/provider/resource_device.go index fc3a3a9..bf13404 100644 --- a/internal/provider/resource_device.go +++ b/internal/provider/resource_device.go @@ -99,7 +99,7 @@ func resourceDevice() *schema.Resource { }, }, "poe_mode": { - Description: "PoE mode of the port; valid values are `auto`, `pasv24`, `passthrough`, and `off`.", + Description: "PoE mode of the port; valid values are `auto`, `pasv24`, `passthrough`, and `off`.", Type: schema.TypeString, Optional: true, ValidateFunc: validation.StringInSlice([]string{"auto", "pasv24", "passthrough", "off"}, false),