fix(deps): update module gotest.tools/gotestsum to v1.12.3 #31
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bumpversion | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
on: | |
pull_request: | |
types: [ "closed" ] | |
jobs: | |
update_tag: | |
if: >- | |
github.event.pull_request.merged == true && | |
contains(github.event.pull_request.labels.*.name, 'renovate_publish') | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Bump version | |
id: bump | |
uses: callowayproject/bump-my-version@master | |
env: | |
BUMPVERSION_TAG: "true" | |
with: | |
args: patch | |
github-token: ${{ secrets.TAGGING_TOKEN }} | |
- name: Check | |
if: steps.bump.outputs.bumped == 'true' | |
run: | | |
echo "Version was bumped from ${{ steps.bump.outputs.previous-version }} to ${{ steps.bump.outputs.current-version }}!" |