Check for newer dependencies #656
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
name: Check for newer dependencies | |
on: | |
schedule: | |
- cron: "37 0 * * *" | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
paths: | |
- "scripts/lib.sh" | |
- "scripts/check_deps.sh" | |
- "**/update-deps.yaml" | |
workflow_dispatch: | |
env: | |
GH_TOKEN: ${{ secrets.NEW_PR_TOKEN }} | |
jobs: | |
check_deps: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout build scripts | |
uses: actions/checkout@v4 | |
- name: Read build.env | |
id: buildenv | |
uses: falti/dotenv-action@v1 | |
with: | |
path: build.env | |
export-variables: true | |
keys-case: upper | |
log-variables: true | |
- name: Install build deps | |
run: | | |
sudo apt-get -y update | |
sudo apt-get -y upgrade | |
sudo apt-get -y install libssl-dev | |
- name: Check deps | |
run: scripts/check_deps.sh |