-
Notifications
You must be signed in to change notification settings - Fork 100
47 lines (40 loc) · 1.03 KB
/
Copy pathreproducible-dependencies.yml
File metadata and controls
47 lines (40 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Reproducible Dependency Installation Check
on:
pull_request:
paths:
- "**/package.json"
- "**/package-lock.json"
- "**/Cargo.toml"
- "**/Cargo.lock"
- "scripts/check-dependency-locks.sh"
push:
branches: [main]
paths:
- "**/package.json"
- "**/package-lock.json"
- "**/Cargo.toml"
- "**/Cargo.lock"
workflow_dispatch:
concurrency:
group: deps-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
verify-lockfiles:
name: verify-frozen-lockfiles
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run Reproducible Dependency Verification
run: |
chmod +x scripts/check-dependency-locks.sh
./scripts/check-dependency-locks.sh