kemitix-trello/.github/workflows/dependency-check.yml
dependabot[bot] 6d1bad256c
build(deps): bump actions/checkout from 3.1.0 to 3.3.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.1.0 to 3.3.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3.1.0...v3.3.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-09 10:10:24 +00:00

18 lines
416 B
YAML

on:
schedule:
- cron: '30 5 * * *'
jobs:
test_dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
- name: setup-jdk-11
uses: actions/setup-java@v3.5.1
with:
distribution: 'temurin'
java-version: '11'
cache: 'maven'
check-latest: true
- name: check dependencies
run: mvn dependency-check:check