Skip to content

build(deps): bump github.com/pterm/pterm from 0.12.53 to 0.12.66 #694

build(deps): bump github.com/pterm/pterm from 0.12.53 to 0.12.66

build(deps): bump github.com/pterm/pterm from 0.12.53 to 0.12.66 #694

Workflow file for this run

name: update-docs
on: [ push ]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.ACCESS_TOKEN }}
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Run CI
run: |
go get
go mod tidy
go run ./ci
- name: Push changes
run: |
git config --global user.name 'MarvinJWendt' || exit 0
git config --global user.email '[email protected]' || exit 0
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY || exit 0
git checkout "${GITHUB_REF:11}" || exit 0
git add . || exit 0
git commit -am "docs: autoupdate" || exit 0
git push || exit 0
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}