chore(deps): bump golang.org/x/crypto from 0.16.0 to 0.17.0 (#300) #193
This file contains 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
# GitHub Actions Workflow definition to automatically create a new Git tag on each push to master | |
name: tag | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
tag: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.DM_BOT_TOKEN }} | |
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
- uses: fregante/setup-git-user@v1 | |
- name: tag | |
uses: jenkins-x-plugins/[email protected] | |
with: | |
tag: true | |
github-token: ${{ secrets.DM_BOT_TOKEN }} |