From aa3e38eebd874c39c2f21204ab0d09ec271dd6d9 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 18 Jun 2025 11:29:07 -0400 Subject: [PATCH 1/3] Update update-flake-lock --- .github/workflows/update.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 181769a..336906b 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -1,24 +1,24 @@ -name: update-flake-lock +name: "Flake.lock: update Nix dependencies" on: - workflow_dispatch: + workflow_dispatch: # allows manual triggering schedule: - - cron: "0 0 * * 0" + - cron: '0 0 * * 0' # runs weekly on Sunday at 00:00 jobs: - lockfile: - runs-on: ubuntu-latest + nix-flake-update: permissions: + contents: write id-token: write - contents: read + issues: write + pull-requests: write + runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Install Determinate Nix - uses: DeterminateSystems/determinate-nix-action@v3 - - name: Enable FlakeHub Cache - uses: DeterminateSystems/flakehub-cache-action@main - - name: Update flake.lock - uses: ./. + - uses: actions/checkout@v4 + - uses: DeterminateSystems/determinate-nix-action@v3 + - uses: DeterminateSystems/update-flake-lock@main with: - _internal-strict-mode: true + pr-title: "Update Nix flake inputs" # Title of PR to be created + pr-labels: | # Labels to be set on the PR + dependencies + automated From 2770056b7a1d19346f9b1d086ff13c6b3e37fe2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 18 Jun 2025 15:31:13 +0000 Subject: [PATCH 2/3] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'nixpkgs': 'https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.796699%2Brev-dda3dcd3fe03e991015e9a74b22d35950f264a54/0196b263-02b0-7dec-8aca-c2506ed2485f/source.tar.gz?narHash=sha256-Ua0drDHawlzNqJnclTJGf87dBmaO/tn7iZ%2BTCkTRpRc%3D' (2025-05-08) → 'https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.816272%2Brev-9e83b64f727c88a7711a2c463a7b16eedb69a84c/01977fb5-daf4-741f-bbb9-d7589f1b897f/source.tar.gz?narHash=sha256-v263g4GbxXv87hMXMCpjkIxd/viIF7p3JpJrwgKdNiI%3D' (2025-06-17) --- flake.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index 1d0d096..d8acdfd 100644 --- a/flake.lock +++ b/flake.lock @@ -2,12 +2,12 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1746663147, - "narHash": "sha256-Ua0drDHawlzNqJnclTJGf87dBmaO/tn7iZ+TCkTRpRc=", - "rev": "dda3dcd3fe03e991015e9a74b22d35950f264a54", - "revCount": 796699, + "lastModified": 1750134718, + "narHash": "sha256-v263g4GbxXv87hMXMCpjkIxd/viIF7p3JpJrwgKdNiI=", + "rev": "9e83b64f727c88a7711a2c463a7b16eedb69a84c", + "revCount": 816272, "type": "tarball", - "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.796699%2Brev-dda3dcd3fe03e991015e9a74b22d35950f264a54/0196b263-02b0-7dec-8aca-c2506ed2485f/source.tar.gz" + "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.816272%2Brev-9e83b64f727c88a7711a2c463a7b16eedb69a84c/01977fb5-daf4-741f-bbb9-d7589f1b897f/source.tar.gz" }, "original": { "type": "tarball", From e619add55ea752b2afe93bc2f1747757d442a1fb Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 18 Jun 2025 11:36:28 -0400 Subject: [PATCH 3/3] ...prettier... --- .github/workflows/update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 336906b..1079c58 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -3,7 +3,7 @@ name: "Flake.lock: update Nix dependencies" on: workflow_dispatch: # allows manual triggering schedule: - - cron: '0 0 * * 0' # runs weekly on Sunday at 00:00 + - cron: "0 0 * * 0" # runs weekly on Sunday at 00:00 jobs: nix-flake-update: @@ -19,6 +19,6 @@ jobs: - uses: DeterminateSystems/update-flake-lock@main with: pr-title: "Update Nix flake inputs" # Title of PR to be created - pr-labels: | # Labels to be set on the PR + pr-labels: | # Labels to be set on the PR dependencies automated