build(deps): bump library/alpine from 3.19.1 to 3.20.0 #121
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: Continuous Integration Pipeline | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- "**/*.md" | |
- docs/** | |
- examples/** | |
env: | |
GORELEASER_VERSION: v1.25.1 | |
jobs: | |
lint: | |
name: Lint Code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
with: | |
show-progress: false | |
- name: Setup Golang | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: go.mod | |
cache: false | |
- name: Set golangci-lint Cache Key | |
id: create-sha | |
run: | | |
echo "GOLANGCILINT_SHA=$(cat ./tools/GOLANGCI_LINT_VERSION | sha256sum - | awk '{ print $1 }')" >> $GITHUB_ENV | |
- name: Setup golangci-lint Cache | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: | | |
./tools/bin | |
key: ${{ runner.os }}-go-${{ env.GOLANGCILINT_SHA }} | |
restore-keys: | | |
${{ runner.os }}-go-${{ env.GOLANGCILINT_SHA }} | |
- name: Run Lint CI | |
run: make ci-lint GOLANGCI_LINT_MODE="github-actions" | |
test: | |
name: Testing on ${{ matrix.os }} and kubernetes ${{ matrix.k8s_version}} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
k8s_version: | |
- "1.24" | |
- "1.25" | |
- "1.26" | |
- "1.27" | |
- "1.28" | |
- "1.29" | |
- "1.30" | |
runs-on: ${{ matrix.os }} | |
env: | |
ENVTEST_K8S_VERSION: ${{matrix.k8s_version}} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
with: | |
show-progress: false | |
- name: Setup Golang | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: go.mod | |
- name: Run Test Coverage | |
run: make ci | |
build: | |
name: Build for Supported Architectures | |
runs-on: ubuntu-latest | |
needs: | |
- lint | |
- test | |
if: github.event_name != 'push' | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
with: | |
show-progress: false | |
- name: Setup Golang | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: go.mod | |
- name: Setup Goreleaser | |
uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 # v5.0.0 | |
with: | |
version: ${{ env.GORELEASER_VERSION }} | |
install-only: true | |
- name: Run Build Multiarchitecture | |
run: make build-multiarch | |
publish-release: | |
runs-on: ubuntu-latest | |
needs: | |
- lint | |
- test | |
if: github.event_name == 'push' | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
with: | |
show-progress: false | |
fetch-depth: 0 | |
- name: Setup Golang | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: go.mod | |
- name: Setup Goreleaser | |
uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 # v5.0.0 | |
with: | |
version: ${{ env.GORELEASER_VERSION }} | |
install-only: true | |
- name: Set Snapshot Release Environment | |
if: github.ref_type == 'branch' | |
run: | | |
echo "SNAPSHOT_RELEASE=1" >> $GITHUB_ENV | |
- name: Run Goreleaser | |
run: make ci-release SNAPSHOT_RELEASE=${SNAPSHOT_RELEASE} | |
env: | |
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} | |
- name: Upload Binaries Artifacts | |
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | |
with: | |
name: artifacts | |
path: bin/ | |
publish-docker: | |
runs-on: ubuntu-latest | |
needs: | |
- publish-release | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
with: | |
show-progress: false | |
- name: Download Binaries | |
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 | |
with: | |
name: artifacts | |
path: bin/ | |
- name: Restore Executable Permissions | |
run: | | |
find ./bin/{darwin,linux} -type f -exec chmod +x {} \; | |
- name: Docker Login to GitHub Repository | |
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Docker Login to DockerHub | |
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0 | |
with: | |
username: ${{ secrets.BOT_DOCKER_USERNAME }} | |
password: ${{ secrets.BOT_DOCKER_TOKEN }} | |
- name: Setup QEMU | |
run: make docker-setup-multiarch | |
- name: Setup Buildx Context | |
id: buildx | |
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 | |
- name: Build Latest Image | |
run: make ci-docker BUILDX_CONTEXT=${{ steps.buildx.outputs.name }} |