Skip to content

Commit 34f4f81

Browse files
gruenichhorenmar
authored andcommitted
[ci] Update GitHub Actions to latest major release
Fix warning that Node.js 20 is disconinued in June
1 parent 57f738b commit 34f4f81

9 files changed

Lines changed: 12 additions & 12 deletions

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
compilation_mode: [fastbuild, dbg, opt]
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020

2121
- name: Mount Bazel cache
22-
uses: actions/cache@v3
22+
uses: actions/cache@v5
2323
with:
2424
path: "/home/runner/.cache/bazel"
2525
key: bazel-ubuntu22-gcc11

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
other_pkgs: clang-11
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v6
2727

2828
- name: Prepare environment
2929
run: |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676

7777
steps:
78-
- uses: actions/checkout@v4
78+
- uses: actions/checkout@v6
7979

8080
- name: Prepare environment
8181
run: |
@@ -100,7 +100,7 @@ jobs:
100100
name: clang-tidy
101101
runs-on: ubuntu-22.04
102102
steps:
103-
- uses: actions/checkout@v4
103+
- uses: actions/checkout@v6
104104

105105
- name: Prepare environment
106106
run: |

.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++-11
8484

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

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

.github/workflows/mac-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
std: [14, 17]
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121

2222
- name: Configure
2323
run: |

.github/workflows/mac-sanitizer-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
filter:
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929

3030
- name: Configure
3131

.github/workflows/package-manager-builds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
profile_generate: 'false'
1919

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

2323
- name: Install conan
2424
run: pip install conan==${{matrix.conan_version}}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
steps:
1010

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

1414
- name: Setup Dependencies
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: '3.7'
1818
- name: Install checkguard

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build_type: [Debug, Release]
1919
std: [14, 17]
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222

2323
- name: Configure build
2424
run: |

0 commit comments

Comments
 (0)