You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/rust.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ jobs:
29
29
# The uses keyword specifies that this step will run v3 of the actions/checkout action.
30
30
# This is an action that checks out your repository onto the runner, allowing you to run scripts or other actions against your code (such as build and test tools).
31
31
# You should use the checkout action any time your workflow will run against the repository's code.
32
-
uses: actions/checkout@v4
32
+
uses: actions/checkout@v5
33
33
34
34
# This GitHub Action installs a Rust toolchain using rustup. It is designed for one-line concise usage and good defaults.
35
35
- name: Install the Rust toolchain
@@ -43,7 +43,7 @@ jobs:
43
43
name: Rustfmt
44
44
runs-on: ubuntu-latest
45
45
steps:
46
-
- uses: actions/checkout@v4
46
+
- uses: actions/checkout@v5
47
47
- uses: dtolnay/rust-toolchain@stable
48
48
with:
49
49
# Specific to dtolnay/rust-toolchain: Comma-separated string of additional components to install
0 commit comments