fix golang ci lint version #131
Workflow file for this run
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
name: Build Webhooks image | |
on: | |
workflow_dispatch: | |
inputs: | |
push_mage: | |
description: 'Push images' | |
required: false | |
type: boolean | |
push: | |
branches: [ "main" ] | |
paths: | |
- "webhooks/**" | |
- ".github/workflows/webhooks.yml" | |
- "!**/*.md" | |
- "!**/*.yaml" | |
pull_request: | |
branches: [ "*" ] | |
paths: | |
- "webhooks/**" | |
- ".github/workflows/webhooks.yml" | |
- "!**/*.md" | |
- "!**/*.yaml" | |
env: | |
# Common versions | |
GO_VERSION: "1.20" | |
DEFAULT_OWNER: "labring" | |
jobs: | |
resolve-modules: | |
runs-on: ubuntu-20.04 | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Resolve Modules | |
id: set-matrix | |
run: bash ./scripts/resolve-modules.sh ./webhooks | |
golangci-lint: | |
needs: [ resolve-modules ] | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: ${{ fromJson(needs.resolve-modules.outputs.matrix) }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Golang with cache | |
uses: magnetikonline/action-golang-cache@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Install Dependencies | |
run: sudo apt update && sudo apt install -y libgpgme-dev libbtrfs-dev libdevmapper-dev | |
- name: Run Linter | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54.2 | |
working-directory: ${{ matrix.workdir }} | |
args: "--out-${NO_FUTURE}format colored-line-number" | |
image-build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
module: [ whitelist ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Golang with cache | |
uses: magnetikonline/action-golang-cache@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Install Dependencies | |
run: sudo apt update && sudo apt install -y libgpgme-dev libbtrfs-dev libdevmapper-dev | |
- name: Build ${{ matrix.module }} amd64 | |
working-directory: webhooks/${{ matrix.module }} | |
run: | | |
GOARCH=amd64 make build | |
mv bin/manager bin/webhook-${{ matrix.module }}-amd64 | |
chmod +x bin/webhook-${{ matrix.module }}-amd64 | |
- name: Build ${{ matrix.module }} arm64 | |
working-directory: webhooks/${{ matrix.module }} | |
run: | | |
GOARCH=arm64 make build | |
mv bin/manager bin/webhook-${{ matrix.module }}-arm64 | |
chmod +x bin/webhook-${{ matrix.module }}-arm64 | |
- name: Prepare | |
id: prepare | |
run: | | |
TAG=latest | |
echo tag_name=${TAG} >> $GITHUB_OUTPUT | |
- # Add support for more platforms with QEMU (optional) | |
# https://github.com/docker/setup-qemu-action | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
driver-opts: network=host | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
if: ${{ (github.event_name == 'push') || (inputs.push_mage == true) }} | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GH_PAT }} | |
- name: build (and publish) ${{ matrix.module }} main image | |
if: ${{ (github.event_name == 'push') || (inputs.push_mage == true) }} | |
env: | |
# fork friendly ^^ | |
DOCKER_REPO: ghcr.io/${{ github.repository_owner }}/sealos-${{ matrix.module }}-webhook | |
working-directory: webhooks/${{ matrix.module }} | |
run: | | |
docker buildx build \ | |
--platform linux/amd64,linux/arm64 \ | |
--label "org.opencontainers.image.source=https://github.com/${{ github.repository_owner }}/sealos" \ | |
--label "org.opencontainers.image.description=sealos-${{ matrix.module }}-webhook container image" \ | |
--label "org.opencontainers.image.licenses=MIT" \ | |
--push \ | |
-t ${DOCKER_REPO}:${{ steps.prepare.outputs.tag_name }} \ | |
-f Dockerfile \ | |
. | |
- name: build ${{ matrix.module }} image | |
if: ${{ github.event_name == 'pull_request' }} | |
env: | |
# fork friendly ^^ | |
DOCKER_REPO: ghcr.io/${{ github.repository_owner }}/sealos-${{ matrix.module }}-webhook | |
working-directory: webhooks/${{ matrix.module }} | |
run: | | |
docker buildx build \ | |
--platform linux/amd64,linux/arm64 \ | |
--label "org.opencontainers.image.source=https://github.com/${{ github.repository_owner }}/sealos" \ | |
--label "org.opencontainers.image.description=sealos-${{ matrix.module }}-webhook container image" \ | |
--label "org.opencontainers.image.licenses=MIT" \ | |
-t ${DOCKER_REPO}:${{ steps.prepare.outputs.tag_name }} \ | |
-f Dockerfile \ | |
. |