chore(deps): update ghcr.io/renovatebot/renovate docker tag to v39.7.5 #38
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 | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
changes: | |
name: Check changes | |
runs-on: ubuntu-latest | |
outputs: | |
go: ${{ steps.changes.outputs.go }} | |
manifests: ${{ steps.changes.outputs.manifests }} | |
renovate: ${{ steps.changes.outputs.renovate }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Check changes | |
id: changes | |
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
with: | |
filters: | | |
go: | |
- go.mod | |
- go.sum | |
- '**/*.go' | |
manifests: | |
- 'install/base/**/*.yaml' | |
renovate: | |
- .github/renovate.json | |
golangci-lint: | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
needs: changes | |
if: needs.changes.outputs.go == 'true' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
go-version: '1.23.2' | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1 | |
go-test: | |
name: Go test | |
runs-on: ubuntu-latest | |
needs: changes | |
if: needs.changes.outputs.go == 'true' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
go-version: '1.23.2' | |
- name: Run tests | |
run: make test | |
go-build: | |
name: Go build | |
runs-on: ubuntu-latest | |
needs: changes | |
if: needs.changes.outputs.go == 'true' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
go-version: '1.23.2' | |
- name: Build | |
run: make build | |
deploy-to-kind: | |
name: Deploy to kind cluster | |
runs-on: ubuntu-latest | |
needs: changes | |
if: ${{ needs.changes.outputs.go == 'true' || needs.changes.outputs.manifests == 'true' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
go-version: '1.23.2' | |
- name: Setup buildx | |
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1 | |
- name: Install kind | |
run: make install-kind | |
- name: Install kubectl | |
run: make install-kubectl | |
- name: Create kind cluster | |
run: make create-kind-cluster | |
- name: Build container | |
run: make build-container | |
- name: Deploy to kind cluster | |
run: make deploy-to-kind-cluster | |
renovate-validate: | |
name: Validate Renovate config | |
runs-on: ubuntu-latest | |
needs: changes | |
if: needs.changes.outputs.renovate == 'true' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Validate config | |
env: | |
RENOVATE_VERSION: 39.7.5@sha256:3de010f9d0adee856fd2d2a8085252f2643ffabea1d076ebf4a87038a393a1fc | |
run: > | |
docker run --rm -v ./.github/renovate.json:/renovate.json | |
--entrypoint renovate-config-validator | |
ghcr.io/renovatebot/renovate:${RENOVATE_VERSION} /renovate.json |