snowflake/.github/workflows/main.yml

27 lines
716 B
YAML
Raw Normal View History

name: update-flake-lock
on:
2023-04-21 22:30:10 -04:00
workflow_dispatch:
schedule:
2023-04-23 16:28:06 -04:00
- cron: '0 4 * * 0'
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Nix
uses: cachix/install-nix-action@v16
with:
extra_nix_config: |
2023-03-02 01:08:38 -05:00
auto-optimise-store = true
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
2023-03-02 01:08:38 -05:00
experimental-features = nix-command flakes
- name: Update flake.lock
2023-03-02 00:52:04 -05:00
uses: DeterminateSystems/update-flake-lock@v16
with:
2023-04-21 22:30:10 -04:00
pr-title: "flake.lock: Update "
pr-labels: |
dependencies
automated