From 9bba1624ec7143e4cfbec3bdba80c8657a8400f6 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 12:55:05 -0700 Subject: [PATCH 01/26] adding manual trigger for testing --- .github/workflows/test.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f1a1be64e..57a426eb9 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,13 +1,14 @@ name: Test and Validate on: + workflow_dispatch: push: paths-ignore: - - '**.md' - - '.github/ISSUE_TEMPLATE/**' + - "**.md" + - ".github/ISSUE_TEMPLATE/**" pull_request: paths-ignore: - - '**.md' - - '.github/ISSUE_TEMPLATE/**' + - "**.md" + - ".github/ISSUE_TEMPLATE/**" jobs: build: From 19831545eec4e6e3377982ce24dc8a65470037e3 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 13:01:53 -0700 Subject: [PATCH 02/26] incrementing version --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 57a426eb9..76720735c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -21,7 +21,7 @@ jobs: go-version: ^1.18 - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: make test From 4d3fa0fd8313841ff9755b46ad9a51eb80ae6404 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 13:04:43 -0700 Subject: [PATCH 03/26] incrementing right to v6 --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 76720735c..d0e90c324 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -21,7 +21,7 @@ jobs: go-version: ^1.18 - name: Check out code into the Go module directory - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Test run: make test @@ -38,7 +38,7 @@ jobs: go-version: 1.19 - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Lint with golanci-lint uses: golangci/golangci-lint-action@v3 From ee4e4806f8cb33d4d386f2329d717b768cfbe0bc Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 13:10:09 -0700 Subject: [PATCH 04/26] incrementing straight to v6 --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index d0e90c324..b3ca9ccc6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Set up Go 1.x - uses: actions/setup-go@v3 + uses: actions/setup-go@v6 with: go-version: ^1.18 @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Set up Go 1.x" - uses: actions/setup-go@v3 + uses: actions/setup-go@v6 with: go-version: 1.19 From c08bde58a2f7c7a40f4b785fc3dc536e7e3c65ab Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 13:20:10 -0700 Subject: [PATCH 05/26] reverseing step order to handle cache --- .github/workflows/test.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b3ca9ccc6..2a9275845 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -15,14 +15,14 @@ jobs: name: Test runs-on: ubuntu-latest steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v6 + - name: Set up Go 1.x uses: actions/setup-go@v6 with: go-version: ^1.18 - - name: Check out code into the Go module directory - uses: actions/checkout@v6 - - name: Test run: make test @@ -32,14 +32,14 @@ jobs: name: Lint runs-on: ubuntu-latest steps: + - name: Check out code + uses: actions/checkout@v6 + - name: "Set up Go 1.x" uses: actions/setup-go@v6 with: go-version: 1.19 - - name: Check out code - uses: actions/checkout@v6 - - name: Lint with golanci-lint uses: golangci/golangci-lint-action@v3 with: From 4446115a5a64f43a09a677cf19fa2acd04005e00 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 13:25:14 -0700 Subject: [PATCH 06/26] incrementing golangci-lint-action and fixing typo --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2a9275845..b21e66fd6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -41,7 +41,7 @@ jobs: go-version: 1.19 - name: Lint with golanci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: # version of golangci-lint to use # Version should stay in sync with version used for local linting (lint job in Makefile). From 454e599053da382e61b011792910e3cd97b6486c Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 13:51:41 -0700 Subject: [PATCH 07/26] incrementing golangci-lint version --- .github/workflows/test.yaml | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b21e66fd6..07d48cac6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -40,9 +40,9 @@ jobs: with: go-version: 1.19 - - name: Lint with golanci-lint + - name: Lint with golangci-lint uses: golangci/golangci-lint-action@v6 with: # version of golangci-lint to use # Version should stay in sync with version used for local linting (lint job in Makefile). - version: v1.50.1 + version: v2.12.2 diff --git a/Makefile b/Makefile index 91eb70e6e..2948a8197 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ test: lint: # Version used should stay in sync with version in CI (.github/workflows/test.yaml). - docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.50.1 golangci-lint run + docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v2.12.2 golangci-lint run %/remove-local: beta-notice $(eval plugin := $(firstword $(subst /, ,$@))) From 279d4774ceca6e0397d2e92f2ca55328cc31745a Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 13:52:33 -0700 Subject: [PATCH 08/26] fixing version numbner --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 07d48cac6..ab49e04fd 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -41,7 +41,7 @@ jobs: go-version: 1.19 - name: Lint with golangci-lint - uses: golangci/golangci-lint-action@v6 + uses: golangci/golangci-lint-action@v9 with: # version of golangci-lint to use # Version should stay in sync with version used for local linting (lint job in Makefile). From 7a23b1287a687d377e781d56d7b916ee8f48866f Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 14:07:12 -0700 Subject: [PATCH 09/26] reverting golangci-lint version --- .github/workflows/test.yaml | 6 +++--- Makefile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ab49e04fd..2a9275845 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -40,9 +40,9 @@ jobs: with: go-version: 1.19 - - name: Lint with golangci-lint - uses: golangci/golangci-lint-action@v9 + - name: Lint with golanci-lint + uses: golangci/golangci-lint-action@v3 with: # version of golangci-lint to use # Version should stay in sync with version used for local linting (lint job in Makefile). - version: v2.12.2 + version: v1.50.1 diff --git a/Makefile b/Makefile index 2948a8197..91eb70e6e 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ test: lint: # Version used should stay in sync with version in CI (.github/workflows/test.yaml). - docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v2.12.2 golangci-lint run + docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.50.1 golangci-lint run %/remove-local: beta-notice $(eval plugin := $(firstword $(subst /, ,$@))) From 8b16ea30754ed34d37f5bafff0fe4ed02f744561 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 14:07:56 -0700 Subject: [PATCH 10/26] updating checkout version --- .github/workflows/check-flake.yml | 4 ++-- .github/workflows/update-flake-dependencies.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml index 11bfd3859..31fa7254f 100644 --- a/.github/workflows/check-flake.yml +++ b/.github/workflows/check-flake.yml @@ -2,7 +2,7 @@ name: Check Nix flake on: pull_request: paths: - - '**.nix' + - "**.nix" - flake.lock push: branches: @@ -11,7 +11,7 @@ jobs: check-flake: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: DeterminateSystems/nix-installer-action@main - uses: DeterminateSystems/magic-nix-cache-action@main - name: Check Nix flake inputs diff --git a/.github/workflows/update-flake-dependencies.yml b/.github/workflows/update-flake-dependencies.yml index 0bfc12259..3dc8dfadf 100644 --- a/.github/workflows/update-flake-dependencies.yml +++ b/.github/workflows/update-flake-dependencies.yml @@ -2,13 +2,13 @@ name: Update flake dependencies on: schedule: - - cron: '0 16 * * 5' + - cron: "0 16 * * 5" workflow_dispatch: # for allowing manual triggers of the workflow jobs: update-dependencies: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: DeterminateSystems/nix-installer-action@main - uses: DeterminateSystems/magic-nix-cache-action@main - name: Update flake.lock and create signed commit with flake.lock changes From 99e84b35e6f74aace9fda21ea887ddfdb66331b9 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 14:10:29 -0700 Subject: [PATCH 11/26] adding manual trigger --- .github/workflows/check-flake.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml index 31fa7254f..1722cc33f 100644 --- a/.github/workflows/check-flake.yml +++ b/.github/workflows/check-flake.yml @@ -1,5 +1,6 @@ name: Check Nix flake on: + workflow_dispatch: pull_request: paths: - "**.nix" From f43dd76f5be309d3caa4fd371a8d1f2c1a141a26 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 14:15:14 -0700 Subject: [PATCH 12/26] adding manual trigger again --- .github/workflows/check-flake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml index 1722cc33f..f7ac69210 100644 --- a/.github/workflows/check-flake.yml +++ b/.github/workflows/check-flake.yml @@ -1,6 +1,5 @@ name: Check Nix flake on: - workflow_dispatch: pull_request: paths: - "**.nix" @@ -8,6 +7,7 @@ on: push: branches: - main + workflow_dispatch: jobs: check-flake: runs-on: ubuntu-latest From 608c1fa810253505cddca34ffc0691a82ebaf01b Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Wed, 6 May 2026 14:19:51 -0700 Subject: [PATCH 13/26] removing unnecessary workflow_dispatch --- .github/workflows/check-flake.yml | 1 - .github/workflows/test.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml index f7ac69210..31fa7254f 100644 --- a/.github/workflows/check-flake.yml +++ b/.github/workflows/check-flake.yml @@ -7,7 +7,6 @@ on: push: branches: - main - workflow_dispatch: jobs: check-flake: runs-on: ubuntu-latest diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2a9275845..81b0347f2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,6 +1,5 @@ name: Test and Validate on: - workflow_dispatch: push: paths-ignore: - "**.md" From 9bc1b52c3166486c066616529771532eac078ddb Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 09:13:38 -0700 Subject: [PATCH 14/26] upping other deps --- .github/workflows/check-flake.yml | 5 +++-- .github/workflows/update-flake-dependencies.yml | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml index 31fa7254f..1f6c67f48 100644 --- a/.github/workflows/check-flake.yml +++ b/.github/workflows/check-flake.yml @@ -1,5 +1,6 @@ name: Check Nix flake on: + workflow_dispatch: pull_request: paths: - "**.nix" @@ -12,8 +13,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: DeterminateSystems/nix-installer-action@main - - uses: DeterminateSystems/magic-nix-cache-action@main + - uses: DeterminateSystems/nix-installer-action@v22 + - uses: DeterminateSystems/magic-nix-cache-action@v13 - name: Check Nix flake inputs uses: DeterminateSystems/flake-checker-action@v5 with: diff --git a/.github/workflows/update-flake-dependencies.yml b/.github/workflows/update-flake-dependencies.yml index 3dc8dfadf..0ab5638da 100644 --- a/.github/workflows/update-flake-dependencies.yml +++ b/.github/workflows/update-flake-dependencies.yml @@ -9,8 +9,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: DeterminateSystems/nix-installer-action@main - - uses: DeterminateSystems/magic-nix-cache-action@main + - uses: DeterminateSystems/nix-installer-action@v22 + - uses: DeterminateSystems/magic-nix-cache-action@v13 - name: Update flake.lock and create signed commit with flake.lock changes env: GITHUB_TOKEN: ${{ secrets.OP_BOT_TOKEN }} From ebba17a03f624807572f7bb8d07050545efe84aa Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 09:16:22 -0700 Subject: [PATCH 15/26] debug removing branch restrictions --- .github/workflows/check-flake.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml index 1f6c67f48..52d378e43 100644 --- a/.github/workflows/check-flake.yml +++ b/.github/workflows/check-flake.yml @@ -1,13 +1,13 @@ name: Check Nix flake on: workflow_dispatch: - pull_request: - paths: - - "**.nix" - - flake.lock - push: - branches: - - main + # pull_request: + # paths: + # - "**.nix" + # - flake.lock + # push: + # branches: + # - main jobs: check-flake: runs-on: ubuntu-latest From 75ec020dc0c591ce3b5cb023ade1b277f0b6b46d Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 09:19:10 -0700 Subject: [PATCH 16/26] reverting on conditions --- .github/workflows/check-flake.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml index 52d378e43..d8083b943 100644 --- a/.github/workflows/check-flake.yml +++ b/.github/workflows/check-flake.yml @@ -1,13 +1,12 @@ name: Check Nix flake on: - workflow_dispatch: - # pull_request: - # paths: - # - "**.nix" - # - flake.lock - # push: - # branches: - # - main + pull_request: + paths: + - "**.nix" + - flake.lock + push: + branches: + - main jobs: check-flake: runs-on: ubuntu-latest From 6e75ff020d6a25a2faefd2cfe8725f3a10cdbbd7 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 09:22:40 -0700 Subject: [PATCH 17/26] upping golangci version --- .github/workflows/test.yaml | 7 ++++--- Makefile | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 81b0347f2..ab49e04fd 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,5 +1,6 @@ name: Test and Validate on: + workflow_dispatch: push: paths-ignore: - "**.md" @@ -39,9 +40,9 @@ jobs: with: go-version: 1.19 - - name: Lint with golanci-lint - uses: golangci/golangci-lint-action@v3 + - name: Lint with golangci-lint + uses: golangci/golangci-lint-action@v9 with: # version of golangci-lint to use # Version should stay in sync with version used for local linting (lint job in Makefile). - version: v1.50.1 + version: v2.12.2 diff --git a/Makefile b/Makefile index 91eb70e6e..2948a8197 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ test: lint: # Version used should stay in sync with version in CI (.github/workflows/test.yaml). - docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.50.1 golangci-lint run + docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v2.12.2 golangci-lint run %/remove-local: beta-notice $(eval plugin := $(firstword $(subst /, ,$@))) From d2e743ff932ede6bcc3e9947a09b481ed0ae7336 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 10:00:15 -0700 Subject: [PATCH 18/26] migrating config --- .golangci.yml | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index e1bb4d037..c46a6dad2 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,5 +1,6 @@ +version: "2" linters: - disable-all: true + default: none enable: # Defaults: - errcheck @@ -13,14 +14,16 @@ linters: - asciicheck - bidichk - depguard - - goimports - - gofmt -linters-settings: - depguard: - list-type: blacklist - include-go-root: false - packages: - - math/rand - packages-with-error-message: - - math/rand: "please use the safer crypto/rand" + settings: + depguard: + rules: + main: + deny: + - pkg: math/rand + desc: "please use the safer crypto/rand" + +formatters: + enable: + - gofmt + - goimports From dd05e6d876fd7041ffee975d974655004d031873 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 10:05:09 -0700 Subject: [PATCH 19/26] removing deprecated typecheck linter --- .golangci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index c46a6dad2..06b6beafc 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -8,7 +8,6 @@ linters: - govet - ineffassign - staticcheck - - typecheck - unused # Extra: - asciicheck From 055b0f6887fbe9ac6be0dd116b0902e2eb5c07dd Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 10:19:55 -0700 Subject: [PATCH 20/26] removing another deprecated linter --- .golangci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 06b6beafc..54d02cc72 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -4,7 +4,6 @@ linters: enable: # Defaults: - errcheck - - gosimple - govet - ineffassign - staticcheck From 1714c54cc16a035ed91083b63afd1f63738ae05d Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 10:27:58 -0700 Subject: [PATCH 21/26] removing workflow_dispatch used for debug --- .github/workflows/test.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ab49e04fd..2ad0ba0ee 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,6 +1,5 @@ name: Test and Validate on: - workflow_dispatch: push: paths-ignore: - "**.md" From 3b82445195f8b0d8c5d5e1c3949c2f35b6600ed5 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 11:13:32 -0700 Subject: [PATCH 22/26] debug adding workflow_dispatch --- .github/workflows/check-flake.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml index d8083b943..b201e8a62 100644 --- a/.github/workflows/check-flake.yml +++ b/.github/workflows/check-flake.yml @@ -1,12 +1,13 @@ name: Check Nix flake on: - pull_request: - paths: - - "**.nix" - - flake.lock - push: - branches: - - main + workflow_dispatch: + # pull_request: + # paths: + # - "**.nix" + # - flake.lock + # push: + # branches: + # - main jobs: check-flake: runs-on: ubuntu-latest From 6731322fc9c380a31e67ade2d2800aa3c29c2f2b Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 11:15:32 -0700 Subject: [PATCH 23/26] debug more condition changes --- .github/workflows/check-flake.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml index b201e8a62..f664da7d3 100644 --- a/.github/workflows/check-flake.yml +++ b/.github/workflows/check-flake.yml @@ -5,9 +5,10 @@ on: # paths: # - "**.nix" # - flake.lock - # push: - # branches: - # - main + push: + # branches: + # - main + # - jobs: check-flake: runs-on: ubuntu-latest From 642f2e8f998bfc1cc2d495498fb2a4d169addd43 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 11:59:39 -0700 Subject: [PATCH 24/26] updating nixpkgs flake input --- flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index f15a97b5d..78ac26511 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1756035328, - "narHash": "sha256-vC7SslUBCtdT3T37ZH3PLIWYmTkSeppL5BJJByUjYCM=", + "lastModified": 1778124196, + "narHash": "sha256-pYEytCNic/czazbV9r3tbQ6BZzqRBg/41x2dIC5ymOo=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6b0b1559e918d4f7d1df398ee1d33aeac586d4d6", + "rev": "68a8af93ff4297686cb68880845e61e5e2e41d92", "type": "github" }, "original": { From 2e137e516e7a2b6eeea8c0e899e1771080268009 Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 12:11:28 -0700 Subject: [PATCH 25/26] disabling error-producing linters to clear new errors --- .golangci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 54d02cc72..6d0a4c173 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -3,15 +3,17 @@ linters: default: none enable: # Defaults: - - errcheck - govet - ineffassign - - staticcheck - unused # Extra: - asciicheck - bidichk + disable: + # Scott L: currently these produce errors that need to be fixed in a seprate PR + - errcheck - depguard + - staticcheck settings: depguard: From 6cf0e82d4f95dcc8a404d3f02a20a181c43c3c4f Mon Sep 17 00:00:00 2001 From: Scott Lougheed Date: Thu, 7 May 2026 12:40:37 -0700 Subject: [PATCH 26/26] reverting debug triggers --- .github/workflows/check-flake.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml index f664da7d3..d8083b943 100644 --- a/.github/workflows/check-flake.yml +++ b/.github/workflows/check-flake.yml @@ -1,14 +1,12 @@ name: Check Nix flake on: - workflow_dispatch: - # pull_request: - # paths: - # - "**.nix" - # - flake.lock + pull_request: + paths: + - "**.nix" + - flake.lock push: - # branches: - # - main - # - + branches: + - main jobs: check-flake: runs-on: ubuntu-latest