Bump golang.org/x/crypto from 0.31.0 to 0.35.0 in /StoreHUB-auth #23
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: Update Contributors | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [closed] | |
| jobs: | |
| update-contributors: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - name: Install All Contributors CLI | |
| run: npm install -g all-contributors-cli | |
| - name: Configure Git | |
| run: | | |
| git config --global user.name "github-actions" | |
| git config --global user.email "github-actions@github.com" | |
| - name: Update Contributors | |
| run: | | |
| npx all-contributors add ${{ github.actor }} code | |
| git add .all-contributorsrc README.md | |
| git commit -m "docs: update contributors list" || echo "No changes to commit" | |
| git push |