outdated #28
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
# SPDX-FileCopyrightText: 2024 Christina Sørensen | |
# | |
# SPDX-License-Identifier: EUPL-1.2 | |
name: outdated | |
on: | |
schedule: [{cron: "45 4 * * *"}] | |
jobs: | |
outdated: | |
name: Outdated | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' | |
timeout-minutes: 45 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/install@cargo-outdated | |
- run: cargo outdated --workspace --exit-code 1 | |
- run: cargo outdated --manifest-path fuzz/Cargo.toml --exit-code 1 |