Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/clippy_mq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
steps:
# Setup
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
steps:
# Setup
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

Expand All @@ -112,7 +112,7 @@ jobs:
steps:
# Setup
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
steps:
# Setup
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

Expand All @@ -179,7 +179,7 @@ jobs:

# Download
- name: Download target dir
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: binaries
path: target/debug
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
steps:
# Setup
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Unsetting this would make so that any malicious package could get our Github Token
persist-credentials: false

- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ env.TARGET_BRANCH }}
path: 'out'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lintcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 2
# Unsetting this would make so that any malicious package could get our Github Token
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Unsetting this would make so that any malicious package could get our Github Token
persist-credentials: false
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Unsetting this would make so that any malicious package could get our Github Token
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/remark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
# Setup
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Unsetting this would make so that any malicious package could get our Github Token
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion book/src/continuous_integration/github_actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Run Clippy
run: cargo clippy --all-targets --all-features
```