Skip to content

build(deps): bump github.com/klauspost/cpuid/v2 from 2.2.3 to 2.2.5 #691

build(deps): bump github.com/klauspost/cpuid/v2 from 2.2.3 to 2.2.5

build(deps): bump github.com/klauspost/cpuid/v2 from 2.2.3 to 2.2.5 #691

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 'git@marvinjwendt.com' || 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 }}