zig-overlay/.github/workflows/update.yml
dependabot[bot] 3596a874c6
Bump actions/checkout from 3.1.0 to 3.2.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.1.0 to 3.2.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3.1.0...v3.2.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-13 05:07:51 +00:00

20 lines
560 B
YAML

name: update-sources
on:
schedule:
- cron: '0 */12 * * *'
workflow_dispatch:
jobs:
update-sources:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.2.0
- uses: cachix/install-nix-action@v18
with:
nix_path: nixpkgs=channel:nixos-unstable
- run: ./update
- run: "git config user.email mitchellh@users.noreply.github.com"
- run: "git config user.name zig-overlay"
- run: "git add -A"
- run: "git commit -m 'update sources.json' | true"
- run: "git push -u origin main"