Skip to content

Commit 739a00d

Browse files
Bump actions/checkout from 4 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b9d7aed commit 739a00d

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/programming_team_code_ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
library_checker_aizu:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v7
1313
with:
1414
fetch-depth: 0
1515
- name: Set up Python
@@ -40,7 +40,7 @@ jobs:
4040
grep_clangformat_cppcheck:
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v7
4444
- uses: ./.github/actions/setup
4545
- name: Install dependencies
4646
run: sudo apt install -y cppcheck
@@ -50,15 +50,15 @@ jobs:
5050
clangtidy:
5151
runs-on: ubuntu-latest
5252
steps:
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v7
5454
- uses: ./.github/actions/setup
5555
- name: clang-tidy
5656
run: make --directory=tests/ clangtidy
5757

5858
compile_gcc:
5959
runs-on: ubuntu-latest
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v7
6262
- name: Make preinstalled g++-14 the default g++
6363
run: |
6464
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 100
@@ -69,22 +69,22 @@ jobs:
6969
compile_clang:
7070
runs-on: ubuntu-latest
7171
steps:
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v7
7373
- uses: ./.github/actions/setup
7474
- name: g++ with clang
7575
run: make --directory=tests/ compile_clang
7676

7777
find_files_without_tests:
7878
runs-on: ubuntu-latest
7979
steps:
80-
- uses: actions/checkout@v4
80+
- uses: actions/checkout@v7
8181
- name: find files without tests
8282
run: make --directory=tests/ find_files_without_tests
8383

8484
build_pdf:
8585
runs-on: ubuntu-latest
8686
steps:
87-
- uses: actions/checkout@v4
87+
- uses: actions/checkout@v7
8888
- uses: ./.github/actions/setup
8989
- name: Install texlive, rename
9090
run: sudo apt install texlive texlive-latex-extra rename
@@ -100,7 +100,7 @@ jobs:
100100
needs: [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, find_files_without_tests, build_pdf]
101101
if: github.ref == 'refs/heads/dev' && github.event_name == 'push'
102102
steps:
103-
- uses: actions/checkout@v4
103+
- uses: actions/checkout@v7
104104
- uses: actions/download-artifact@v4
105105
with:
106106
name: ptc
@@ -117,7 +117,7 @@ jobs:
117117
needs: [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, find_files_without_tests, build_pdf]
118118
if: github.ref == 'refs/heads/dev' && github.event_name == 'push'
119119
steps:
120-
- uses: actions/checkout@v4
120+
- uses: actions/checkout@v7
121121
- uses: ./.github/actions/setup
122122
- name: Combine includes and force push to main branch
123123
run: |
@@ -134,7 +134,7 @@ jobs:
134134
shellcheck_shfmt:
135135
runs-on: ubuntu-latest
136136
steps:
137-
- uses: actions/checkout@v4
137+
- uses: actions/checkout@v7
138138
- name: Install dependencies
139139
run: sudo apt install shfmt
140140
- name: shellcheck, shfmt

0 commit comments

Comments
 (0)