Skip to content

Commit 79caba8

Browse files
committed
action-validator: 0.6.0 -> 0.6.0-unstable-2025-02-16
Diff: mpalmer/action-validator@v0.6.0...2f8be1d Required including mpalmer/action-validator@6573ff1 to fix following build error "error: older versions of the `wasm-bindgen` crate are incompatible with current versions of Rust"
1 parent 870746a commit 79caba8

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

pkgs/by-name/ac/action-validator/package.nix

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,28 @@
22
lib,
33
rustPlatform,
44
fetchFromGitHub,
5+
unstableGitUpdater,
56
}:
67

7-
rustPlatform.buildRustPackage rec {
8+
rustPlatform.buildRustPackage {
89
pname = "action-validator";
9-
version = "0.6.0";
10+
version = "0.6.0-unstable-2025-02-16";
1011

1112
src = fetchFromGitHub {
1213
owner = "mpalmer";
1314
repo = "action-validator";
14-
rev = "v${version}";
15-
hash = "sha256-lJHGx/GFddIwVVXRj75Z/l5CH/yuw/uIhr02Qkjruww=";
15+
rev = "2f8be1d2066eb3687496a156d00b4f1b3ea7b028";
16+
hash = "sha256-QDnikgAfkrvn7/vnmgTQ5J8Ro2HZ6SVkp9cPUYgejqM=";
1617
fetchSubmodules = true;
1718
};
1819

1920
useFetchCargoVendor = true;
20-
cargoHash = "sha256-dy66ZkU9lIYGe9T3oR8m5cGcBQO5MF1KsLjfaHTtvlY=";
21+
cargoHash = "sha256-FuJ5NzeZhfN312wK5Q1DgIXUAN6hqxu/1BhGqasbdS8=";
22+
23+
passthru.updateScript = unstableGitUpdater {
24+
tagPrefix = "v";
25+
branch = "main";
26+
};
2127

2228
meta = with lib; {
2329
description = "Tool to validate GitHub Action and Workflow YAML files";

0 commit comments

Comments
 (0)