From 1709093d947660753a6b94ca44af18eef5a557d1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 22 Oct 2023 00:09:18 +0000 Subject: [PATCH 1/2] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'advisory-db': 'github:rustsec/advisory-db/81594d9fd5b32c3eaa199812475498b47fc98742' (2023-09-21) → 'github:rustsec/advisory-db/71d80e811f2e29a4b82d3e545ad6591e35227e03' (2023-10-14) • Updated input 'crane': 'github:ipetkov/crane/9dae37b4a545f05aa70a2f048428c5196690c5a4' (2023-09-22) → 'github:ipetkov/crane/758ae442227103fa501276e8225609a11c99718e' (2023-10-20) • Removed input 'crane/flake-compat' • Removed input 'crane/flake-utils' • Removed input 'crane/rust-overlay' • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/5ba549eafcf3e33405e5f66decd1a72356632b96' (2023-09-19) → 'github:NixOS/nixpkgs/7c9cc5a6e5d38010801741ac830a3f8fd667a7a0' (2023-10-19) • Updated input 'rust-overlay': 'github:oxalica/rust-overlay/9bfad7bee1816a5e171b96fff7c855d5037f902a' (2023-09-22) → 'github:oxalica/rust-overlay/6e8e3332433847cd56186b1f6fc8c47603cf5b46' (2023-10-21) --- flake.lock | 41 +++++++++-------------------------------- 1 file changed, 9 insertions(+), 32 deletions(-) diff --git a/flake.lock b/flake.lock index c4d6092d..593d1906 100644 --- a/flake.lock +++ b/flake.lock @@ -18,23 +18,16 @@ }, "crane": { "inputs": { - "flake-compat": "flake-compat", - "flake-utils": [ - "flake-utils" - ], "nixpkgs": [ "nixpkgs" - ], - "rust-overlay": [ - "rust-overlay" ] }, "locked": { - "lastModified": 1697596235, - "narHash": "sha256-4VTrrTdoA1u1wyf15krZCFl3c29YLesSNioYEgfb2FY=", + "lastModified": 1697840921, + "narHash": "sha256-zXHwu104SQOxogkMgg+w22c3+zI/FvK83TAkfLmeKw0=", "owner": "ipetkov", "repo": "crane", - "rev": "c97a0c0d83bfdf01c29113c5592a3defc27cb315", + "rev": "758ae442227103fa501276e8225609a11c99718e", "type": "github" }, "original": { @@ -43,22 +36,6 @@ "type": "github" } }, - "flake-compat": { - "flake": false, - "locked": { - "lastModified": 1696267196, - "narHash": "sha256-AAQ/2sD+0D18bb8hKuEEVpHUYD1GmO2Uh/taFamn6XQ=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "4f910c9827911b1ec2bf26b5a062cd09f8d89f85", - "type": "github" - }, - "original": { - "owner": "edolstra", - "repo": "flake-compat", - "type": "github" - } - }, "flake-utils": { "inputs": { "systems": "systems" @@ -79,11 +56,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1697456312, - "narHash": "sha256-roiSnrqb5r+ehnKCauPLugoU8S36KgmWraHgRqVYndo=", + "lastModified": 1697723726, + "narHash": "sha256-SaTWPkI8a5xSHX/rrKzUe+/uVNy6zCGMXgoeMb7T9rg=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "ca012a02bf8327be9e488546faecae5e05d7d749", + "rev": "7c9cc5a6e5d38010801741ac830a3f8fd667a7a0", "type": "github" }, "original": { @@ -112,11 +89,11 @@ ] }, "locked": { - "lastModified": 1697595136, - "narHash": "sha256-9honwiIeMbBKi7FzfEy89f1ShUiXz/gVxZSS048pKyc=", + "lastModified": 1697940838, + "narHash": "sha256-eyk92QqAoRNC0V99KOcKcBZjLPixxNBS0PRc4KlSQVs=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "a2ccfb2134622b28668a274e403ba6f075ae1223", + "rev": "a3e829c06eadf848f13d109c7648570ce37ebccd", "type": "github" }, "original": { From 9a1f8fba6118891bf9206ad177501ade17d1179e Mon Sep 17 00:00:00 2001 From: Daniel Harvey Date: Mon, 23 Oct 2023 09:55:19 +0100 Subject: [PATCH 2/2] Remove automation --- .github/workflows/nix-update.yaml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/nix-update.yaml diff --git a/.github/workflows/nix-update.yaml b/.github/workflows/nix-update.yaml deleted file mode 100644 index 27ecdbc6..00000000 --- a/.github/workflows/nix-update.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: update-flake-lock - -on: - workflow_dispatch: # allows manual triggering - schedule: - - cron: "0 0 * * 0" # runs weekly on Sunday at 00:00 - -jobs: - lockfile: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Install Nix - uses: DeterminateSystems/nix-installer-action@main - - - name: Update flake.lock - uses: DeterminateSystems/update-flake-lock@main - with: - pr-title: "Update flake.lock" # Title of PR to be created - pr-labels: | # Labels to be set on the PR - dependencies - automated