Skip to content

Commit 07363ee

Browse files
committed
Update github actions checkout version
1 parent 5f22250 commit 07363ee

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
matrix:
88
os: [ubuntu-latest, macos-latest]
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v5
1111
- run: make test_debug
1212
- run: ./ContainersTest
1313
debug_windows:
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
os: [windows-latest]
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v5
2020
- run: make test_debug_no_malloc_fail
2121
- run: ./ContainersTest
2222
optimized:
@@ -25,7 +25,7 @@ jobs:
2525
matrix:
2626
os: [ubuntu-latest, macos-latest]
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v5
2929
- run: make test_optimized
3030
- run: ./ContainersTest
3131
optimized_windows:
@@ -34,20 +34,20 @@ jobs:
3434
matrix:
3535
os: [windows-latest]
3636
steps:
37-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v5
3838
- run: make test_optimized_no_malloc_fail
3939
- run: ./ContainersTest
4040
coverage:
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@v3
43+
- uses: actions/checkout@v5
4444
- run: make test_coverage
4545
- run: ./ContainersTest
4646
- run: bash <(curl -s https://codecov.io/bash)
4747
valgrind:
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v5
5151
- run: sudo apt install -y valgrind
5252
- run: make test_debug_no_malloc_fail
5353
- run: valgrind --leak-check=full --error-exitcode=1 ./ContainersTest

0 commit comments

Comments
 (0)