Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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')]
Expand Down
2 changes: 1 addition & 1 deletion env.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) CattleCloud LLC
// Copyright CattleCloud LLC 2024, 2026
// SPDX-License-Identifier: BSD-3-Clause

package env
Expand Down
2 changes: 1 addition & 1 deletion env_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) CattleCloud LLC
// Copyright CattleCloud LLC 2024, 2026
// SPDX-License-Identifier: BSD-3-Clause

package env
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cattlecloud.net/go/env

go 1.23
go 1.25

require (
github.com/shoenig/go-conceal v0.5.4
Expand Down