From eb6c4da44635a461e34641147fa69fe5811933e9 Mon Sep 17 00:00:00 2001 From: Vehbi Sinan Tunalioglu Date: Sun, 5 Jul 2026 08:43:21 +0800 Subject: [PATCH 1/2] chore(deps): bump flake inputs --- flake.lock | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index ea4327b..e15482a 100644 --- a/flake.lock +++ b/flake.lock @@ -5,11 +5,11 @@ "nixpkgs-lib": "nixpkgs-lib" }, "locked": { - "lastModified": 1765835352, - "narHash": "sha256-XswHlK/Qtjasvhd1nOa1e8MgZ8GS//jBoTqWtrS1Giw=", + "lastModified": 1782949081, + "narHash": "sha256-vp6Y/Grm98ESt6ceOkWiHWyZRDV3J1RID4w+6NWK9yA=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "a34fae9c08a15ad73f295041fec82323541400a9", + "rev": "17c9d6cdfc60c64f4ee8d306f9bc0b4ccb51481e", "type": "github" }, "original": { @@ -20,11 +20,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1780453794, - "narHash": "sha256-bXMRa9VTsHSPXL4Cw8R6JJLQeY3Y/IP4+YJCYVmQ7FY=", + "lastModified": 1783148766, + "narHash": "sha256-uslt2pqShTIXDdAHRHv2QkYLsVdY8Oqwz0EA48/RSM8=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6b316287bae2ee04c9b93c8c858d930fd07d7338", + "rev": "a50de1b7d8a586adc18d2395c19de7d6058e6030", "type": "github" }, "original": { @@ -36,11 +36,11 @@ }, "nixpkgs-lib": { "locked": { - "lastModified": 1765674936, - "narHash": "sha256-k00uTP4JNfmejrCLJOwdObYC9jHRrr/5M/a/8L2EIdo=", + "lastModified": 1782614948, + "narHash": "sha256-ePjCwr1sNm9NYUqywL7QfK3JnlS015msC+eBu2zKlp8=", "owner": "nix-community", "repo": "nixpkgs.lib", - "rev": "2075416fcb47225d9b68ac469a5c4801a9c4dd85", + "rev": "db3f255737b94216eb71cce308e2912cf6bc2d7c", "type": "github" }, "original": { From a05f6632bb2e4743931639e1130e2b36482eed0e Mon Sep 17 00:00:00 2001 From: Vehbi Sinan Tunalioglu Date: Sun, 5 Jul 2026 09:31:13 +0800 Subject: [PATCH 2/2] test(ci): update GitHub Actions workflows --- .github/workflows/check-static.yaml | 2 +- .github/workflows/check-verify.yaml | 4 ++-- .github/workflows/{release.yml => release.yaml} | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) rename .github/workflows/{release.yml => release.yaml} (87%) diff --git a/.github/workflows/check-static.yaml b/.github/workflows/check-static.yaml index 43db0bf..54ad1a4 100644 --- a/.github/workflows/check-static.yaml +++ b/.github/workflows/check-static.yaml @@ -9,7 +9,7 @@ jobs: steps: - name: "Checkout Codebase" - uses: "actions/checkout@v6" + uses: "actions/checkout@v7" - name: "Build Static Executable" run: | diff --git a/.github/workflows/check-verify.yaml b/.github/workflows/check-verify.yaml index c20daf1..985db3e 100644 --- a/.github/workflows/check-verify.yaml +++ b/.github/workflows/check-verify.yaml @@ -10,10 +10,10 @@ jobs: steps: - name: "Checkout Codebase" - uses: "actions/checkout@v6" + uses: "actions/checkout@v7" - name: "Install Nix" - uses: "DeterminateSystems/nix-installer-action@v21" + uses: "DeterminateSystems/nix-installer-action@v22" - name: "Prepare CI devShell" run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yaml similarity index 87% rename from .github/workflows/release.yml rename to .github/workflows/release.yaml index 6e40735..7f85d09 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yaml @@ -16,17 +16,17 @@ jobs: steps: - id: "release" name: "Release" - uses: "googleapis/release-please-action@v4" + uses: "googleapis/release-please-action@v5" - name: "Checkout Codebase" if: "${{ steps.release.outputs.release_created }}" - uses: "actions/checkout@v6" + uses: "actions/checkout@v7" with: fetch-depth: 0 - name: "Install Nix" if: "${{ steps.release.outputs.release_created }}" - uses: "DeterminateSystems/nix-installer-action@v21" + uses: "DeterminateSystems/nix-installer-action@v22" - name: "Build Static Executable" id: "build_static"