From c1f7a9202d913558a2c9a5a105e965643da08561 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 14:02:38 +0000 Subject: [PATCH 1/2] Update actions/checkout action to v5 --- .github/workflows/labeler.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 2d76325..23552f1 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run Labeler uses: crazy-max/ghaction-github-labeler@v5 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 679fe4d..8ba2b0c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 From 7665f3d97d23af6c2021f5f9ea02ebc378503e73 Mon Sep 17 00:00:00 2001 From: Tom Fleet Date: Mon, 11 Aug 2025 18:16:30 +0100 Subject: [PATCH 2/2] Fix lint --- .golangci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index 0576e3a..c081231 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -127,6 +127,9 @@ linters: - name: cyclomatic disabled: true # cyclop does this + - name: enforce-switch-style + disabled: true # exhaustive handles this + - name: exported arguments: - checkPrivateReceivers