Skip to content

Commit 0400d29

Browse files
authored
Merge pull request #101 from rodneylab/ci__update_ci_config
ci update ci config
2 parents 5541363 + af422b5 commit 0400d29

File tree

6 files changed

+30
-30
lines changed

6 files changed

+30
-30
lines changed

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
- name: 'Checkout Repository'
2323
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2424
- name: 'Dependency Review'
25-
uses: actions/dependency-review-action@4081bf99e2866ebe428fc0477b69eb4fcda7220a # v4.4.0
25+
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0

.github/workflows/general.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Linux Dependencies
2626
run: sudo apt-get update
2727
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28-
- uses: dtolnay/rust-toolchain@ed2356ad628626a6b3f5be6c3e0255c0454fcdb9 # stable
28+
- uses: dtolnay/rust-toolchain@4f647fc679bcd3b11499ccb42104547c83dabe96 # stable
2929
- name: Run tests
3030
run: cargo test
3131
fmt:
@@ -38,7 +38,7 @@ jobs:
3838
egress-policy: audit
3939
disable-telemetry: true
4040
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
41-
- uses: dtolnay/rust-toolchain@ed2356ad628626a6b3f5be6c3e0255c0454fcdb9 # stable
41+
- uses: dtolnay/rust-toolchain@4f647fc679bcd3b11499ccb42104547c83dabe96 # stable
4242
with:
4343
components: rustfmt
4444
- name: Enforce formatting
@@ -62,7 +62,7 @@ jobs:
6262
egress-policy: audit
6363
disable-telemetry: true
6464
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
65-
- uses: dtolnay/rust-toolchain@ed2356ad628626a6b3f5be6c3e0255c0454fcdb9 # stable
65+
- uses: dtolnay/rust-toolchain@4f647fc679bcd3b11499ccb42104547c83dabe96 # stable
6666
with:
6767
components: clippy
6868
- name: Linting
@@ -78,7 +78,7 @@ jobs:
7878
- name: Install Linux Dependencies
7979
run: sudo apt-get update
8080
- name: Install ${{ matrix.msrv }}
81-
uses: dtolnay/rust-toolchain@ed2356ad628626a6b3f5be6c3e0255c0454fcdb9 # stable
81+
uses: dtolnay/rust-toolchain@4f647fc679bcd3b11499ccb42104547c83dabe96 # stable
8282
with:
8383
toolchain: ${{ matrix.msrv }}
8484
- name: cargo +${{ matrix.msrv }} check
@@ -96,7 +96,7 @@ jobs:
9696
run: sudo apt-get update
9797
- name: Checkout repository
9898
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
99-
- uses: dtolnay/rust-toolchain@ed2356ad628626a6b3f5be6c3e0255c0454fcdb9 # stable
99+
- uses: dtolnay/rust-toolchain@4f647fc679bcd3b11499ccb42104547c83dabe96 # stable
100100
with:
101101
components: llvm-tools-preview
102102
- name: Install grcov
@@ -108,7 +108,7 @@ jobs:
108108
- name: Generate code coverage
109109
run: grcov . -s . --binary-path ./target/debug/ -t lcov --branch --ignore-not-existing -o ./target/debug/
110110
- name: Upload coverage reports to Codecov
111-
uses: codecov/codecov-action@5c47607acb93fed5485fdbf7232e8a31425f672a # v5.0.2
111+
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5.0.7
112112
with:
113113
file: ./target/debug/lcov
114114
env:

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ jobs:
6565
retention-days: 5
6666
# Upload the results to GitHub's code scanning dashboard.
6767
- name: "Upload to code-scanning"
68-
uses: github/codeql-action/upload-sarif@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
68+
uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
6969
with:
7070
sarif_file: results.sarif

.github/workflows/validate-licenses.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
continue-on-error: ${{ matrix.checks == 'advisories' }}
1515
steps:
1616
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17-
- uses: EmbarkStudios/cargo-deny-action@8371184bd11e21dcf8ac82ebf8c9c9f74ebf7268 # v2.0.1
17+
- uses: EmbarkStudios/cargo-deny-action@f87fcad0e65efa7cbdec993036c394fa9be14262 # v2.0.2
1818
with:
1919
command: check ${{ matrix.checks }}

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ serde = { version = "1.0.215", features = ["derive"] }
3131
serde-wasm-bindgen = "0.6.5"
3232
textwrap = "0.16.1"
3333
thiserror = "2.0.3"
34-
url = "2.5.0"
34+
url = "2.5.4"
3535
wasm-bindgen = { version = "=0.2.92", features = ["serde-serialize"] }

0 commit comments

Comments
 (0)