Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

deps(actions): bump docker/setup-buildx-action from 3.3.0 to 3.4.0 #48

deps(actions): bump docker/setup-buildx-action from 3.3.0 to 3.4.0

deps(actions): bump docker/setup-buildx-action from 3.3.0 to 3.4.0 #48

Workflow file for this run

name: Auto-merge Dependabot
on: pull_request
jobs:
automerge:
name: Check and merge PR
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
if: github.actor == 'dependabot[bot]'
steps:
- uses: dependabot/fetch-metadata@v2
id: metadata
with:
github-token: ${{ github.token }}
- name: Enable auto-merge
if: steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'
run: gh pr merge --auto --rebase "$PR"
env:
GH_TOKEN: ${{ github.token }}
PR: ${{ github.event.pull_request.html_url }}