Skip to content

Commit 0b79b12

Browse files
authored
Merge pull request #135 from open-dynamic-robot-initiative/fkloss/workflows
chore: Bump versions in GitHub workflows
2 parents 512a827 + d715b6e commit 0b79b12

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build_master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
jobs:
2020
build_and_test:
21-
runs-on: ubuntu-20.04
21+
runs-on: ubuntu-latest
2222

2323
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
2424
permissions:
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Check out code
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636

3737
- name: Setup Apptainer
3838
uses: open-dynamic-robot-initiative/trifinger-build-action/setup_apptainer@v2

.github/workflows/build_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ on: pull_request
1515

1616
jobs:
1717
build_and_test:
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-latest
1919
steps:
2020
- name: Check out code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Setup Apptainer
2424
uses: open-dynamic-robot-initiative/trifinger-build-action/setup_apptainer@v2

.github/workflows/format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ on: pull_request
55
jobs:
66
clang-format:
77
name: C++ Formatting
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
11-
- uses: actions/setup-python@v2
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-python@v5
1212
- run: wget https://raw.githubusercontent.com/machines-in-motion/mpi_cmake_modules/master/scripts/run-clang-format
1313
- run: wget https://raw.githubusercontent.com/machines-in-motion/mpi_cmake_modules/master/resources/_clang-format
1414
- run: python ./run-clang-format -r .

.github/workflows/pr_todo_checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: New FIXMEs
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: Check for FIXMEs
1212
uses: luator/github_action_check_new_todos@v2
1313
with:
@@ -18,7 +18,7 @@ jobs:
1818
name: New TODOs
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Check for TODOs
2323
uses: luator/github_action_check_new_todos@v2
2424
with:

0 commit comments

Comments
 (0)