Skip to content

chore(deps): bump google.golang.org/grpc from 1.42.0 to 1.53.0 #22

chore(deps): bump google.golang.org/grpc from 1.42.0 to 1.53.0

chore(deps): bump google.golang.org/grpc from 1.42.0 to 1.53.0 #22

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
REPO: ghcr.io
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: make build
# - name: Test
# run: make test
- name: prepare for deploy check
uses: yokawasa/action-setup-kube-tools@v0.7.1
with:
kustomize: '4.5.5'
kube-score: '1.14.0'
- name: deploy check
run: kustomize build manifests/dev | kube-score score - --exit-one-on-warning --ignore-test statefulset-has-poddisruptionbudget --ignore-test pod-networkpolicy --ignore-test statefulset-has-host-podantiaffinity
- name: Build image
run: make build-image
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Push image
run: make push-image