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

Commit f24ad88

Browse files
authored
Merge pull request #30 from Dirout/renovate/actions-checkout-3.x
2 parents 7be90a5 + a8c38fa commit f24ad88

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@v1
8+
- uses: actions/checkout@v3
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@v2
12+
- uses: actions/checkout@v3
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@v2
11+
uses: actions/checkout@v3
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@v2
14+
uses: actions/checkout@v3
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@v2
14+
uses: actions/checkout@v3
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@v2
22+
uses: actions/checkout@v3
2323
with:
2424
path: ./mokk
2525
- name: Checkout GitHub Pages environment
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
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@v2
20+
uses: actions/checkout@v3
2121
with:
2222
path: ./mokk
2323
- name: Checkout GitHub Pages environment
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
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@v2
14+
uses: actions/checkout@v3
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@v2
10+
- uses: actions/checkout@v3
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@v1
15+
- uses: actions/checkout@v3
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)