diff --git a/.golangci.yaml b/.golangci.yaml index 50d248c..2678f7d 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -49,8 +49,6 @@ linters: # Check for duplicate code. You may want to disable this with // nolint:dupl if the source code is the same, but # legitimately exists for different reasons. - dupl - # Check for pointers in loops. This is a typical bug source. - - exportloopref # Prevent dogsledding (mass-ignoring return values). This typically indicates missing error handling. - dogsled # Enforce consistent import aliases across all files. @@ -85,7 +83,6 @@ linters-settings: - golang.org/ govet: enable-all: true - check-shadowing: false disable: # We don't care about variable shadowing. - shadow diff --git a/go.mod b/go.mod index 607f41f..916b7db 100644 --- a/go.mod +++ b/go.mod @@ -20,5 +20,5 @@ require ( go.arcalot.io/exex v0.2.0 go.arcalot.io/log/v2 v2.2.0 go.flow.arcalot.io/deployer v0.6.1 - go.flow.arcalot.io/pluginsdk v0.14.2 + go.flow.arcalot.io/pluginsdk v0.14.3 ) diff --git a/go.sum b/go.sum index c75b815..76bac71 100644 --- a/go.sum +++ b/go.sum @@ -12,8 +12,8 @@ go.arcalot.io/log/v2 v2.2.0 h1:a4wVAqQ/6zFyEG6I9Dnd7eFA52KKGaBK3hj9PgZ/e0c= go.arcalot.io/log/v2 v2.2.0/go.mod h1:h/Hlyz6wH+mjRUKdL3W2fG2oMrAm2qgPxb0rNJJDUuY= go.flow.arcalot.io/deployer v0.6.1 h1:Q65VHeRZzdrMJZqTRb26EQZQbK+C3pORETVlpw02xWQ= go.flow.arcalot.io/deployer v0.6.1/go.mod h1:Oh+71KYQEof6IS3UGhpMyjQQPRcuomUccn7fwAqrPxE= -go.flow.arcalot.io/pluginsdk v0.14.2 h1:WVVvrJ7KGqkxV2w93CwYx37iVAIlT0lzOZelatDRBC0= -go.flow.arcalot.io/pluginsdk v0.14.2/go.mod h1:BL2bFNQN+Qn9ZQavJ38gIXBukX0FyXdJrs99EiyWqhc= +go.flow.arcalot.io/pluginsdk v0.14.3 h1:LlS50n6udj0SDcjfNxZ1eCSy5McDbuZryLx5EBhC1QA= +go.flow.arcalot.io/pluginsdk v0.14.3/go.mod h1:+HTra2Nh2e+RQ1ispT7QbO0MXYVJmKMeeuAWdHsAA1s= golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc= golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.29.0 h1:L6pJp37ocefwRRtYPKSWOWzOtWSxVajvz2ldH/xi3iU=