From a8da21318236159e9b2fa29a61539b452ef4dd10 Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Sun, 1 Feb 2026 08:39:57 -0600 Subject: [PATCH] repo: update copywrite years --- Justfile | 3 ++- env.go | 2 +- env_test.go | 2 +- go.mod | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Justfile b/Justfile index 743ae33..e0eb6f1 100644 --- a/Justfile +++ b/Justfile @@ -21,7 +21,7 @@ test: # ensure copywrite headers present on source files [group('lint')] copywrite: - copywrite \ + $GOBIN/copywrite \ --config {{scripts}}/copywrite.hcl headers \ --spdx "BSD-3-Clause" @@ -39,6 +39,7 @@ lint: vet [group('build')] init: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.62.2 + go install github.com/hashicorp/copywrite@v0.24.0 # show host system information [group('build')] diff --git a/env.go b/env.go index 3ca9fe7..b458164 100644 --- a/env.go +++ b/env.go @@ -1,4 +1,4 @@ -// Copyright (c) CattleCloud LLC +// Copyright CattleCloud LLC 2024, 2026 // SPDX-License-Identifier: BSD-3-Clause package env diff --git a/env_test.go b/env_test.go index 40a9dc5..b292ef1 100644 --- a/env_test.go +++ b/env_test.go @@ -1,4 +1,4 @@ -// Copyright (c) CattleCloud LLC +// Copyright CattleCloud LLC 2024, 2026 // SPDX-License-Identifier: BSD-3-Clause package env diff --git a/go.mod b/go.mod index 9d7cf6c..59407d1 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module cattlecloud.net/go/env -go 1.23 +go 1.25 require ( github.com/shoenig/go-conceal v0.5.4