chore(deps): bump google.golang.org/protobuf from 1.30.0 to 1.33.0 in /config-reloader #748
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-workflow | |
# This workflow is triggered on pushes to the repository. | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: build-job | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- uses: engineerd/[email protected] | |
with: | |
version: "v0.9.0" | |
- uses: FranzDiebold/[email protected] | |
- name: buildx-image | |
run: | | |
export TESTCONTAINERS_RYUK_DISABLED=true | |
make build-test-ci | |
make buildx-image TAG=v$GITHUB_SHA_SHORT | |
- name: load-image | |
run: | | |
kind load docker-image vmware/kube-fluentd-operator:v$GITHUB_SHA_SHORT | |
- name: install-log-router | |
run: | | |
cd charts | |
PATH=$PATH:/tmp/bin helm upgrade --install --set image.tag=v$GITHUB_SHA_SHORT --set rbac.create=true --wait --timeout 60s log-router ./log-router |