2121 - x86_64-unknown-linux-musl
2222 steps :
2323 - name : Checkout sources
24- uses : actions/checkout@v4
25-
24+ uses : actions/checkout@v5
25+ with :
26+ persist-credentials : false
2627 - name : Install stable toolchain
2728 uses : actions-rs/toolchain@v1
2829 with :
4647 runs-on : ubuntu-latest
4748 steps :
4849 - name : Checkout sources
49- uses : actions/checkout@v4
50-
50+ uses : actions/checkout@v5
51+ with :
52+ persist-credentials : false
5153 - name : Install stable toolchain
5254 uses : actions-rs/toolchain@v1
5355 with :
7375 steps :
7476 - name : Install git for checkout action
7577 run : dnf install -y git
76- - uses : actions/checkout@v4
78+ - uses : actions/checkout@v5
7779 with :
7880 path : loopdev-3
81+ persist-credentials : false
7982 - name : Install dependencies for Fedora
8083 run : >
8184 dnf install -y
@@ -89,10 +92,11 @@ jobs:
8992 components : cargo
9093 toolchain : 1.89.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
9194 - name : Check out ci repo
92- uses : actions/checkout@v4
95+ uses : actions/checkout@v5
9396 with :
9497 path : ci
9598 repository : stratis-storage/ci
99+ persist-credentials : false
96100 - name : Run comparisons of version specs with Fedora packages
97101 # yamllint disable rule:line-length
98102 run : |
@@ -107,7 +111,9 @@ jobs:
107111 container :
108112 image : fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
109113 steps :
110- - uses : actions/checkout@v4
114+ - uses : actions/checkout@v5
115+ with :
116+ persist-credentials : false
111117 - name : Install dependencies for Fedora
112118 run : dnf install -y make yamllint
113119 - name : Run yamllint
0 commit comments