From dc1ea4d2908efc5f6179b75f222fcbf321d579c7 Mon Sep 17 00:00:00 2001 From: Jared O'Connell Date: Mon, 24 Feb 2025 11:43:06 -0500 Subject: [PATCH 1/3] Dependency updates --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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= From fd29f60d8080e4f7448eb5f5b8beaf6da70130e1 Mon Sep 17 00:00:00 2001 From: Dustin Black Date: Mon, 24 Feb 2025 18:39:53 +0100 Subject: [PATCH 2/3] remove errant shadow parameter from .golangci.yaml --- .golangci.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.golangci.yaml b/.golangci.yaml index 50d248c..82f63de 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -85,7 +85,6 @@ linters-settings: - golang.org/ govet: enable-all: true - check-shadowing: false disable: # We don't care about variable shadowing. - shadow From d6d6f3192d133dd59ab07a9c4159798e64bcb5e1 Mon Sep 17 00:00:00 2001 From: Jared O'Connell Date: Mon, 24 Feb 2025 14:38:50 -0500 Subject: [PATCH 3/3] Remove use of deprecated linter --- .golangci.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.golangci.yaml b/.golangci.yaml index 82f63de..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.