Skip to content

ci: update dependencies #36

ci: update dependencies

ci: update dependencies #36

Workflow file for this run

name: Dependabot
on:
pull_request:
jobs:
generate:
if: ${{ github.actor == 'dependabot[bot]' }}
name: Generate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
with:
ref: ${{ github.head_ref }}
submodules: "true"
token: ${{ secrets.APPARITOR_GITHUB_TOKEN }}
- name: Generate
run: make generate
- name: Commit
uses: devops-infra/action-commit-push@68b7fc222377cf66850ef50a6fd6a1be983d176d
with:
github_token: ${{ secrets.APPARITOR_GITHUB_TOKEN }}
commit_message: "dependabot: generate"
build:
if: ${{ github.actor == 'dependabot[bot]' }}
name: Build
needs: generate
uses: ./.github/workflows/reusable-build.yaml
with:
ref: ${{ github.head_ref }}