-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Bump go; use goreleaser for build (#281)
* chore: Bump go version to 1.21 * chore: Use docker file for go-tools * chore: Use goreleaser for build * chore: Update workflows * chore: Fix codeql workflow * chore: Bump github.com/obalunenko/logger to v1.0.1
- Loading branch information
1 parent
2b14ee4
commit 9b4ebed
Showing
80 changed files
with
456 additions
and
10,315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: build-lint-docker-images | ||
|
||
on: | ||
push: | ||
branches: | ||
- "master" | ||
pull_request: | ||
types: [ opened, synchronize, reopened ] | ||
branches: | ||
- "*" | ||
paths: | ||
- "!**" | ||
- "build/docker/**" | ||
- "!build/docker/**.sh" | ||
- ".github/workflows/dockerfiles.yml" | ||
|
||
jobs: | ||
lint-dockerfiles: | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 4 | ||
matrix: | ||
dockerfile: | ||
[ | ||
"./build/docker/go-tools/Dockerfile", | ||
] | ||
runs-on: "ubuntu-22.04" | ||
name: Lint ${{ matrix.dockerfile }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Lint | ||
uses: jbergstroem/hadolint-gh-action@v1 | ||
with: | ||
dockerfile: ${{ matrix.dockerfile }} | ||
annotate: true | ||
error_level: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM ghcr.io/obalunenko/go-tools:v1.3.2 AS builder | ||
|
||
CMD ["/bin/sh", "-c", ""] |
Oops, something went wrong.