Skip to content

Commit

Permalink
tidy actions and goreleaser config
Browse files Browse the repository at this point in the history
  • Loading branch information
qrkourier committed Jul 25, 2024
1 parent 6fd1fc4 commit 23d0862
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: '1.22'
go-version-file: ./go.mod
check-latest: true

- name: Set up QEMU
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: '1.22'
go-version-file: ./go.mod
check-latest: true

- name: generate docs
Expand All @@ -71,7 +71,7 @@ jobs:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: './go.mod'
go-version-file: ./go.mod
check-latest: true
- name: golangci-lint
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6.0.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: '1.22'
go-version-file: ./go.mod
check-latest: true

- name: Set up QEMU
Expand Down
10 changes: 5 additions & 5 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ snapshot:
dockers:
- goos: linux
goarch: amd64
skip_push: "{{ ne .GitURL 'https://github.com/helm/chart-releaser' | toYaml }}"
skip_push: "{{ ne .GitURL "https://github.com/helm/chart-releaser" | toYaml }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand All @@ -77,7 +77,7 @@ dockers:

- goos: linux
goarch: arm64
skip_push: "{{ ne .GitURL 'https://github.com/helm/chart-releaser' | toYaml }}"
skip_push: "{{ ne .GitURL "https://github.com/helm/chart-releaser" | toYaml }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand All @@ -97,7 +97,7 @@ dockers:
- goos: linux
goarch: arm
goarm: 7
skip_push: "{{ ne .GitURL 'https://github.com/helm/chart-releaser' | toYaml }}"
skip_push: "{{ ne .GitURL "https://github.com/helm/chart-releaser" | toYaml }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand All @@ -116,7 +116,7 @@ dockers:

- goos: linux
goarch: s390x
skip_push: "{{ ne .GitURL 'https://github.com/helm/chart-releaser' | toYaml }}"
skip_push: "{{ ne .GitURL "https://github.com/helm/chart-releaser" | toYaml }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand All @@ -135,7 +135,7 @@ dockers:

- goos: linux
goarch: ppc64le
skip_push: "{{ ne .GitURL 'https://github.com/helm/chart-releaser' | toYaml }}"
skip_push: "{{ ne .GitURL "https://github.com/helm/chart-releaser" | toYaml }}"
dockerfile: Dockerfile
use: buildx
image_templates:
Expand Down

0 comments on commit 23d0862

Please sign in to comment.