Skip to content
This repository was archived by the owner on Aug 26, 2024. It is now read-only.

Commit 8a0e55a

Browse files
Update actions/checkout action to v4
1 parent f24ad88 commit 8a0e55a

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/annotate_code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: Annotate code
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v3
8+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
99
- uses: actions-rs/toolchain@v1
1010
with:
1111
toolchain: nightly

.github/workflows/audit_on_change.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Security audit
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
1313
- uses: actions-rs/audit-check@v1
1414
with:
1515
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/check_code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout codebase
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
1212
with:
1313
token: ${{ secrets.GITHUB_TOKEN }}
1414
- name: Setup Rust toolchain

.github/workflows/fix_code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout codebase
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
1515
with:
1616
token: ${{ secrets.GITHUB_TOKEN }}
1717
- name: Setup Rust toolchain

.github/workflows/format_code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout codebase
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
1515
with:
1616
token: ${{ secrets.GITHUB_TOKEN }}
1717
- name: Setup Rust toolchain

.github/workflows/gh-pages-scheduled.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
sudo apt-get -qq install ./dokkoo_${version}_amd64.deb > /dev/null
2020
printf "Installed Dokkoo v${version}"
2121
- name: Checkout Mokk
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
2323
with:
2424
path: ./mokk
2525
- name: Checkout GitHub Pages environment
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
2727
with:
2828
ref: gh-pages
2929
path: ./gh-pages

.github/workflows/gh-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
sudo apt-get -qq install ./dokkoo_${version}_amd64.deb > /dev/null
1818
printf "Installed Dokkoo v${version}"
1919
- name: Checkout Mokk
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
2121
with:
2222
path: ./mokk
2323
- name: Checkout GitHub Pages environment
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
2525
with:
2626
ref: gh-pages
2727
path: ./gh-pages

.github/workflows/lint_code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout codebase
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
1515
with:
1616
token: ${{ secrets.GITHUB_TOKEN }}
1717
- name: Setup Rust toolchain

.github/workflows/scheduled_audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Security audit
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
1111
- uses: actions-rs/audit-check@v1
1212
with:
1313
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/shiftleft_analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# Scan runs on ubuntu, mac and windows
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
1616
# Instructions
1717
# 1. Setup JDK, Node.js, Python etc depending on your project type
1818
# 2. Compile or build the project before invoking scan

0 commit comments

Comments
 (0)