Skip to content

Commit 01cac90

Browse files
authored
Bump up actions/checkout version to v4 (#2760)
1 parent b735dfc commit 01cac90

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/linux-bazel-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
compilation_mode: [fastbuild, dbg, opt]
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
- name: Mount bazel cache
1717
uses: actions/cache@v3

.github/workflows/linux-meson-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
other_pkgs: clang-11
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222

2323
- name: Prepare environment
2424
run: sudo apt-get install -y meson ninja-build ${{matrix.other_pkgs}}

.github/workflows/linux-other-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070

7171

7272
steps:
73-
- uses: actions/checkout@v2
73+
- uses: actions/checkout@v4
7474

7575
- name: Prepare environment
7676
run: sudo apt-get install -y ninja-build ${{matrix.other_pkgs}}

.github/workflows/linux-simple-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
other_pkgs: g++-10
8484

8585
steps:
86-
- uses: actions/checkout@v2
86+
- uses: actions/checkout@v4
8787

8888
- name: Add repositories for older GCC
8989
run: |

.github/workflows/mac-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
extra_tests: ON
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626

2727
- name: Configure build
2828
working-directory: ${{runner.workspace}}

.github/workflows/validate-header-guards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010

1111
- name: Checkout source code
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313

1414
- name: Setup Dependencies
1515
uses: actions/setup-python@v2

.github/workflows/windows-simple-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build_type: [Debug, Release]
1414
std: [14, 17]
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717

1818
- name: Configure build
1919
working-directory: ${{runner.workspace}}

0 commit comments

Comments
 (0)