fix(deps): update module github.com/puerkitobio/goquery to v1.12.0 (#… #10
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 flake.lock | |
| on: | |
| push: | |
| branches: [master] | |
| paths: [go.sum] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - name: Update flake.lock | |
| run: nix flake update | |
| - name: Commit and push changes | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| git diff --quiet flake.lock && exit 0 | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add . | |
| git commit -m "chore: update flake.lock (#228)" | |
| git remote set-url origin https://x-access-token:${GH_TOKEN}@github.com/${{ github.repository }}.git | |
| git push origin HEAD:${GITHUB_REF} |