From e9963e323d77578498a391549d3672feeae34863 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 4 Apr 2026 18:49:00 +0000 Subject: [PATCH] chore(deps): update dependency actions/checkout to v5.0.1 --- module/interface.nix | 2 +- module/tests/github-actions/job.nix | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/module/interface.nix b/module/interface.nix index ba76d7d..25fb288 100644 --- a/module/interface.nix +++ b/module/interface.nix @@ -74,7 +74,7 @@ in default = "actions/checkout@v6"; description = "The default checkout action to use for jobs"; # renovate:ignore - example = "actions/checkout@v5"; + example = "actions/checkout@v5.0.1"; }; file = lib.mkOption { diff --git a/module/tests/github-actions/job.nix b/module/tests/github-actions/job.nix index daa6b9c..4a6b08d 100644 --- a/module/tests/github-actions/job.nix +++ b/module/tests/github-actions/job.nix @@ -175,7 +175,7 @@ expr = test-lib.eval-github-actions { pipeline.github-actions.defaultRunsOn = "ubuntu-latest"; # renovate:ignore - pipeline.github-actions.checkoutAction = "actions/checkout@v5"; + pipeline.github-actions.checkoutAction = "actions/checkout@v5.0.1"; jobs.job1 = { checkout = true; commands = [ "echo hello" ]; @@ -186,7 +186,7 @@ runs-on = "ubuntu-latest"; steps = [ # renovate:ignore - { uses = "actions/checkout@v5"; } + { uses = "actions/checkout@v5.0.1"; } { run = "echo hello"; } ]; }; @@ -197,7 +197,7 @@ expr = test-lib.eval-github-actions { pipeline.github-actions.defaultRunsOn = "ubuntu-latest"; # renovate:ignore - pipeline.github-actions.checkoutAction = "actions/checkout@v5"; + pipeline.github-actions.checkoutAction = "actions/checkout@v5.0.1"; jobs = { job-a = { branches.default = { @@ -214,7 +214,7 @@ runs-on = "ubuntu-latest"; steps = [ # renovate:ignore - { uses = "actions/checkout@v5"; } + { uses = "actions/checkout@v5.0.1"; } { id = "diff"; shell = "bash"; @@ -229,7 +229,7 @@ runs-on = "ubuntu-latest"; steps = [ # renovate:ignore - { uses = "actions/checkout@v5"; } + { uses = "actions/checkout@v5.0.1"; } ]; }; };