Skip to content

.github/workflows/weekly.yaml #17

.github/workflows/weekly.yaml

.github/workflows/weekly.yaml #17

Workflow file for this run

# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Run weekly scans and other checks.
#
# This workflow calls other workflows to do code and other checks on a schedule.
# It can also be invoked manually via the "Run workflow" button at
# https://github.com/quantumlib/REPO/actions/workflows/weekly.yaml
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
name: Weekly tests
run-name: Run weekly tests and scans
on:
schedule:
# Run on Mondays.
- cron: '0 10 * * 1'
# Allow manual invocation.
workflow_dispatch:
inputs:
debug:
description: 'Run with debugging options'
type: boolean
default: true
# Declare default workflow permissions as read only.
permissions: read-all
concurrency:
# Cancel any previously-started but still active runs on the same branch.
cancel-in-progress: true
group: ${{github.workflow}}-${{github.event.pull_request.number||github.ref}}
jobs:
osv-code-scan:
if: github.repository_owner == 'quantumlib'
name: Run periodic open-source vulnerabilities scanner
uses: ./.github/workflows/osv-scanner.yaml

Check failure on line 51 in .github/workflows/weekly.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/weekly.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/weekly.yaml" -> "./.github/workflows/osv-scanner.yaml" (source branch with sha:fc1cc5f7f3f170151c98caaef009ddd711a0865f) : workflow is not reusable as it is missing a `on.workflow_call` trigger
permissions:
actions: read
contents: read
security-events: write
with:
reason: '(weekly)'
debug: ${{github.event.inputs.debug || false}}
scorecard-repo-scan:
if: github.repository_owner == 'quantumlib'
name: Run periodic Scorecard analysis
uses: ./.github/workflows/scorecard-scanner.yaml
permissions:
actions: read
contents: read
security-events: write
secrets: inherit
with:
reason: '(weekly)'
debug: ${{github.event.inputs.debug || false}}