Skip to content

Commit 659a707

Browse files
committed
Updated GitHub Actions checkout version to v4
1 parent 0074c25 commit 659a707

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/formatting.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ jobs:
1111
formatting:
1212
runs-on: macos-latest
1313
steps:
14-
- uses: actions/checkout@v2
15-
16-
# Install dependencies
14+
- name: perform checkout
15+
uses: actions/checkout@v4
1716

1817
- name: install latest clang-format
1918
run: brew install clang-format

.github/workflows/macOS.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
runs-on: macos-latest
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- name: perform checkout
18+
uses: actions/checkout@v4
1819

1920
- name: perform setup
2021
run: ./scripts/setup.sh

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- name: perform checkout
18+
uses: actions/checkout@v4
1819

1920
- name: update apt
2021
run: sudo apt-get update

.github/workflows/windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
shell: pwsh
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- name: perform checkout
21+
uses: actions/checkout@v4
2122

2223
- name: perform setup
2324
run: ./scripts/setup.ps1

0 commit comments

Comments
 (0)