From 739a00d342b0665eb58dc511dfe5b613927c4562 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 20:57:41 +0000 Subject: [PATCH] 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](https://github.com/actions/checkout/compare/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] --- .../workflows/programming_team_code_ci.yml | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/programming_team_code_ci.yml b/.github/workflows/programming_team_code_ci.yml index 5281b741..64a92a34 100644 --- a/.github/workflows/programming_team_code_ci.yml +++ b/.github/workflows/programming_team_code_ci.yml @@ -9,7 +9,7 @@ jobs: library_checker_aizu: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set up Python @@ -40,7 +40,7 @@ jobs: grep_clangformat_cppcheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: ./.github/actions/setup - name: Install dependencies run: sudo apt install -y cppcheck @@ -50,7 +50,7 @@ jobs: clangtidy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: ./.github/actions/setup - name: clang-tidy run: make --directory=tests/ clangtidy @@ -58,7 +58,7 @@ jobs: compile_gcc: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Make preinstalled g++-14 the default g++ run: | sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 100 @@ -69,7 +69,7 @@ jobs: compile_clang: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: ./.github/actions/setup - name: g++ with clang run: make --directory=tests/ compile_clang @@ -77,14 +77,14 @@ jobs: find_files_without_tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: find files without tests run: make --directory=tests/ find_files_without_tests build_pdf: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: ./.github/actions/setup - name: Install texlive, rename run: sudo apt install texlive texlive-latex-extra rename @@ -100,7 +100,7 @@ jobs: needs: [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, find_files_without_tests, build_pdf] if: github.ref == 'refs/heads/dev' && github.event_name == 'push' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/download-artifact@v4 with: name: ptc @@ -117,7 +117,7 @@ jobs: needs: [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, find_files_without_tests, build_pdf] if: github.ref == 'refs/heads/dev' && github.event_name == 'push' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: ./.github/actions/setup - name: Combine includes and force push to main branch run: | @@ -134,7 +134,7 @@ jobs: shellcheck_shfmt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Install dependencies run: sudo apt install shfmt - name: shellcheck, shfmt