Skip to content

WIP: Change: Ci: following guidelines #11

WIP: Change: Ci: following guidelines

WIP: Change: Ci: following guidelines #11

Workflow file for this run

name: CI
on:
push:
branches: [ main]
tags: ["v*"]
pull_request:
workflow_dispatch:
repository_dispatch:
schedule:
# rebuild image every sunday
- cron: "0 0 * * 0"
jobs:
init:
uses: ./.github/workflows/init.yaml
build:
uses: ./.github/workflows/build.yml
linting:
uses: ./.github/workflows/ci.yml
container:
needs: [build, init]
uses: ./.github/workflows/push-container.yml

Check failure on line 23 in .github/workflows/control.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. In .github/workflows/control.yml (Line: 23, Col: 11): Error from called workflow nichtsfrei/openvas-scanner/.github/workflows/push-container.yml@2cb52dd6eb516ebdd9f481791e54b3ec1f6759cc (Line: 7, Col: 9): Required property is missing: type In .github/workflows/control.yml (Line: 23, Col: 11): Error from called workflow nichtsfrei/openvas-scanner/.github/workflows/push-container.yml@2cb52dd6eb516ebdd9f481791e54b3ec1f6759cc (Line: 9, Col: 9): Required property is missing: type
secrets:
dockerhub_user: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN}}
with:
is_latest_tag: ${{needs.init.outputs.is_latest_tag}}
is_version_tag: ${{needs.init.outputs.is_version_tag}}
# although it seems a bit odd, but that way we ensure
# that we test the latest greatest thing.
smoketests:
needs: [container, init]
uses: ./.github/workflows/smoketest.yaml