From ed8b784c78b759a59dbb0232e04d00604a611699 Mon Sep 17 00:00:00 2001 From: seth Date: Tue, 30 May 2023 19:44:41 -0400 Subject: ci: don't use unmaintained actions --- .github/workflows/update-flake.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/update-flake.yaml (limited to '.github/workflows/update-flake.yaml') diff --git a/.github/workflows/update-flake.yaml b/.github/workflows/update-flake.yaml new file mode 100644 index 0000000..12d7607 --- /dev/null +++ b/.github/workflows/update-flake.yaml @@ -0,0 +1,28 @@ +name: update nix flake +# this is to make sure we can build against a +# recent version of nixos-unstable + +on: + schedule: + - cron: "0 0 * * 6" + workflow_dispatch: + +permissions: + contents: write + +jobs: + update-flake: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: setup nix & cachix + uses: ./.github/actions/setup-nix + with: + cachix-token: ${{ secrets.CACHIX_AUTH_TOKEN }} + + - uses: DeterminateSystems/update-flake-lock@v19 + with: + commit-msg: "chore(flake): update inputs" + pr-title: "chore(flake): update inputs" -- cgit v1.2.3