Skip to content

Bump coverallsapp/github-action from 2.2.3 to 2.3.0 in the ci-dependencies group #363

Bump coverallsapp/github-action from 2.2.3 to 2.3.0 in the ci-dependencies group

Bump coverallsapp/github-action from 2.2.3 to 2.3.0 in the ci-dependencies group #363

Workflow file for this run

name: main
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
uses: ./.github/workflows/build.yaml
lint:
uses: ./.github/workflows/lint.yaml
test:
uses: ./.github/workflows/test.yaml
needs: build
with:
artifact: ${{ needs.build.outputs.artifact }}
version: ${{ needs.build.outputs.version }}
deploy:
uses: ./.github/workflows/deploy.yaml
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/main' }}
needs: [build, lint, test]
with:
artifact: ${{ needs.build.outputs.artifact }}
version: ${{ needs.build.outputs.version }}
secrets:
KUBECONFIG: ${{ secrets.KUBECONFIG }}