Update Dependencies #287
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: Update Dependencies | |
on: | |
schedule: | |
- cron: "30 2 * * *" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
# Using our own container is required since we need all package sources | |
# set-up correctly. | |
container: ghcr.io/philips-software/amp-devcontainer:latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Update dependencies | |
working-directory: .devcontainer | |
run: ./update-dependencies.sh apt-requirements-base.json apt-requirements-clang.json | |
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5.0.2 | |
with: | |
commit-message: "chore(deps): update apt dependencies" | |
branch: feature/update-apt-dependencies | |
title: "chore(deps): update apt dependencies" | |
labels: dependencies | |
token: ${{ secrets.AMP_RELEASER_TOKEN }} |