Skip to content

⬆️ Bump actions/cache from 4 to 5 #80

⬆️ Bump actions/cache from 4 to 5

⬆️ Bump actions/cache from 4 to 5 #80

Workflow file for this run

name: Dependabot

Check failure on line 1 in .github/workflows/dependabot.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dependabot.yml

Invalid workflow file

(Line: 21, Col: 12): Job 'dependabot' depends on unknown job 'update-utils'.
on:
pull_request_target:
branches: dependabot/**
permissions:
pull-requests: write
issues: write
repository-projects: write
contents: write
# Set environment variables available in all jobs and steps
env:
python_version: "3.10"
jobs:
update-go:
uses: ./.github/workflows/update-utils.yml
secrets: inherit
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
needs: update-utils
steps:
# Checkout with full history for to allow compare with base branch
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: ${{ env.python_version }}
- uses: FranzDiebold/github-env-vars-action@v2
- name: Install CI/CD tools
run: pip install continuous-delivery-scripts && pip list
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Add a label
run: gh pr edit "$PR_URL" --add-label "bot"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Approve the PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Assert news
run: bash ./scripts/setup_github.sh && cd-assert-news -b ${CI_ACTION_REF_NAME}
env:
GIT_TOKEN: ${{ secrets.GIT_SECRET }}
- name: Auto-merge the PR
run: gh pr merge --auto --squash --body "Dependency upgrade $PR_URL" --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}