Skip to content

Commit 2ac6ea4

Browse files
feat: upgrade goreleaser to 1.26.2
1 parent ba9cbd6 commit 2ac6ea4

File tree

317 files changed

+6490
-2833
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

317 files changed

+6490
-2833
lines changed

go.mod

Lines changed: 133 additions & 83 deletions
Large diffs are not rendered by default.

go.sum

Lines changed: 379 additions & 321 deletions
Large diffs are not rendered by default.

goreleaser/.github/workflows/build.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ jobs:
2929
env:
3030
DOCKER_CLI_EXPERIMENTAL: "enabled"
3131
steps:
32-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
32+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3
3333
with:
3434
fetch-depth: 0
35-
- uses: arduino/setup-task@e26d8975574116b0097a1161e0fe16ba75d84c1c # v1
35+
- uses: arduino/setup-task@b91d5d2c96a56797b48ac1e0e89220bf64044611 # v1
3636
with:
3737
version: 3.x
3838
repo-token: ${{ secrets.GITHUB_TOKEN }}
3939
- uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v2
40-
- uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v2
40+
- uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3
4141
- name: setup-snapcraft
4242
# FIXME: the mkdirs are a hack for https://github.com/goreleaser/goreleaser/issues/1715
4343
run: |
@@ -48,25 +48,23 @@ jobs:
4848
- uses: crazy-max/ghaction-upx@v3
4949
with:
5050
install-only: true
51-
- uses: cachix/install-nix-action@v25
51+
- uses: cachix/install-nix-action@V27
5252
with:
5353
github_access_token: ${{ secrets.GITHUB_TOKEN }}
54-
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4
54+
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v4
5555
with:
5656
go-version: stable
57-
- uses: sigstore/cosign-installer@v3.4.0
58-
- uses: anchore/sbom-action/download-syft@v0.15.8
57+
- uses: sigstore/cosign-installer@v3.5.0
58+
- uses: anchore/sbom-action/download-syft@v0.16.0
5959
- name: setup-validate-krew-manifest
6060
run: go install sigs.k8s.io/krew/cmd/validate-krew-manifest@latest
61-
- name: setup-tparse
62-
run: go install github.com/mfridman/tparse@latest
6361
- name: setup
6462
run: |
6563
task setup
6664
task build
6765
- name: test
68-
run: ./scripts/test.sh
69-
- uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4
66+
run: task test
67+
- uses: codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c # v4
7068
with:
7169
file: ./coverage.txt
7270
- run: ./goreleaser check

goreleaser/.github/workflows/codeql.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
contents: read
1616

1717
steps:
18-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
19-
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4
18+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3
19+
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v4
2020
with:
2121
go-version: stable
22-
- uses: github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a # v2
23-
- uses: github/codeql-action/autobuild@cdcdbb579706841c47f7063dda365e292e5cad7a # v2
24-
- uses: github/codeql-action/analyze@cdcdbb579706841c47f7063dda365e292e5cad7a # v2
22+
- uses: github/codeql-action/init@9fdb3e49720b44c48891d036bb502feb25684276 # v2
23+
- uses: github/codeql-action/autobuild@9fdb3e49720b44c48891d036bb502feb25684276 # v2
24+
- uses: github/codeql-action/analyze@9fdb3e49720b44c48891d036bb502feb25684276 # v2

goreleaser/.github/workflows/depsreview.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
dependency-review:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
11+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3
1212
- uses: actions/dependency-review-action@v4
1313
with:
14-
allow-licenses: BSD-2-Clause, BSD-3-Clause, MIT, Apache-2.0, MPL-2.0
14+
allow-licenses: BSD-2-Clause, BSD-3-Clause, MIT, Apache-2.0, MPL-2.0, ISC

goreleaser/.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
htmltest:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
23-
- uses: cachix/install-nix-action@v25
22+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3
23+
- uses: cachix/install-nix-action@V27
2424
with:
2525
nix_path: nixpkgs=channel:nixos-unstable
2626
github_access_token: ${{ secrets.GITHUB_TOKEN }}

goreleaser/.github/workflows/fig.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

goreleaser/.github/workflows/generate.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
contents: write
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
15+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3
1616
with:
1717
token: ${{ secrets.GH_PAT }}
18-
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4
18+
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v4
1919
with:
2020
go-version: stable
2121
cache: true
22-
- uses: arduino/setup-task@e26d8975574116b0097a1161e0fe16ba75d84c1c # v1
22+
- uses: arduino/setup-task@b91d5d2c96a56797b48ac1e0e89220bf64044611 # v1
2323
with:
2424
version: 3.x
2525
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -28,13 +28,18 @@ jobs:
2828
- run: task docs:releases
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
- uses: cachix/install-nix-action@V27
32+
with:
33+
github_access_token: ${{ secrets.GITHUB_TOKEN }}
3134
- run: task docs:generate
3235
- run: task schema:generate
3336
- run: task nix:licenses:generate
37+
- run: task nix:flake:update
38+
- run: task nix:flake:update-vendor
3439
- run: task schema:validate
35-
- uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # v5
40+
- uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # v5
3641
with:
37-
commit_message: "chore: docs auto-update"
42+
commit_message: "chore: auto-update generated files"
3843
branch: main
3944
commit_user_name: actions-user
4045
commit_user_email: actions@github.com

goreleaser/.github/workflows/gitleaks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
gitleaks:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
17+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3
1818
with:
1919
fetch-depth: 0
2020
- uses: gitleaks/gitleaks-action@v2

goreleaser/.github/workflows/grype.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
contents: read
1818

1919
steps:
20-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
20+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3
2121
- uses: anchore/scan-action@v3
2222
with:
2323
path: "."

0 commit comments

Comments
 (0)