Skip to content

Bump docker/setup-buildx-action from 3.7.1 to 3.8.0 #39

Bump docker/setup-buildx-action from 3.7.1 to 3.8.0

Bump docker/setup-buildx-action from 3.7.1 to 3.8.0 #39

Workflow file for this run

name: auto-merge-dependabot-pr
on: pull_request_target
permissions:
pull-requests: write
contents: write
jobs:
review-dependabot-pr:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2.2.0
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Approve dependatbot GitHub Actions updates
if: ${{ steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch' || 'version-update:semver-major' }}
run: gh pr review $PR_URL --approve -b "LGTM"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}