Skip to content
This repository was archived by the owner on May 30, 2026. It is now read-only.

Bump github.com/spf13/cobra from 1.9.1 to 1.10.1 #48

Bump github.com/spf13/cobra from 1.9.1 to 1.10.1

Bump github.com/spf13/cobra from 1.9.1 to 1.10.1 #48

Workflow file for this run

name: Dependabot
permissions:
contents: write
on:
pull_request:
branches:
- main
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Fetch metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
alert-lookup: true
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Merge patches and minor development updates
if: |
steps.metadata.outputs.update-type == 'version-update:semver-patch' ||
(steps.metadata.outputs.update-type == 'version-update:semver-minor' &&
steps.metadata.outputs.dependency-type == 'direct:development')
run: gh pr merge --auto --merge ${{ github.event.pull_request.html_url }}
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"