Skip to content

Commit dffbe08

Browse files
committed
Upgrade actions checkout to v6
1 parent 45168a7 commit dffbe08

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/clippy_mq.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
# Setup
3636
- name: Checkout
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838
with:
3939
persist-credentials: false
4040

@@ -94,7 +94,7 @@ jobs:
9494
steps:
9595
# Setup
9696
- name: Checkout
97-
uses: actions/checkout@v5
97+
uses: actions/checkout@v6
9898
with:
9999
persist-credentials: false
100100

@@ -112,7 +112,7 @@ jobs:
112112
steps:
113113
# Setup
114114
- name: Checkout
115-
uses: actions/checkout@v5
115+
uses: actions/checkout@v6
116116
with:
117117
persist-credentials: false
118118

@@ -168,7 +168,7 @@ jobs:
168168
steps:
169169
# Setup
170170
- name: Checkout
171-
uses: actions/checkout@v5
171+
uses: actions/checkout@v6
172172
with:
173173
persist-credentials: false
174174

@@ -179,7 +179,7 @@ jobs:
179179
180180
# Download
181181
- name: Download target dir
182-
uses: actions/download-artifact@v5
182+
uses: actions/download-artifact@v6
183183
with:
184184
name: binaries
185185
path: target/debug

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
steps:
2626
# Setup
2727
- name: Checkout
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
# Unsetting this would make so that any malicious package could get our Github Token
3131
persist-credentials: false
3232

3333
- name: Checkout
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
ref: ${{ env.TARGET_BRANCH }}
3737
path: 'out'

.github/workflows/lintcheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 2
3030
# Unsetting this would make so that any malicious package could get our Github Token
@@ -80,7 +80,7 @@ jobs:
8080

8181
steps:
8282
- name: Checkout
83-
uses: actions/checkout@v5
83+
uses: actions/checkout@v6
8484
with:
8585
# Unsetting this would make so that any malicious package could get our Github Token
8686
persist-credentials: false
@@ -113,7 +113,7 @@ jobs:
113113

114114
steps:
115115
- name: Checkout
116-
uses: actions/checkout@v5
116+
uses: actions/checkout@v6
117117
with:
118118
# Unsetting this would make so that any malicious package could get our Github Token
119119
persist-credentials: false

.github/workflows/remark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
# Setup
1313
- name: Checkout
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
with:
1616
# Unsetting this would make so that any malicious package could get our Github Token
1717
persist-credentials: false

book/src/continuous_integration/github_actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
clippy_check:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- name: Run Clippy
2020
run: cargo clippy --all-targets --all-features
2121
```

0 commit comments

Comments
 (0)