Skip to content

chore(deps): bump actions/upload-artifact from 4.6.2 to 7.0.1 #1338

chore(deps): bump actions/upload-artifact from 4.6.2 to 7.0.1

chore(deps): bump actions/upload-artifact from 4.6.2 to 7.0.1 #1338

Workflow file for this run

name: Dependabot auto-approve
on: pull_request
permissions:
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
# canonical dependabot auto-approve pattern; the job only has pull-requests: write and runs Dependabot's own metadata action
if: ${{ github.actor == 'dependabot[bot]' }} # zizmor: ignore[bot-conditions]
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3.1.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}