From 9a983e35b870a537dd270d35f9d1012da7f885eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 12:47:22 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cmake.yml | 6 +++--- .github/workflows/codeql.yml | 2 +- .github/workflows/codespell.yml | 2 +- .github/workflows/cpp.yml | 4 ++-- .github/workflows/docker-publish.yml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 641e458679..342e19190c 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -24,7 +24,7 @@ jobs: link: ["STATIC", "SHARED"] steps: - name: Checkout Drogon source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: submodules: true fetch-depth: 0 @@ -73,7 +73,7 @@ jobs: osver: [13, 14, 15] steps: - name: Checkout Drogon source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: submodules: true fetch-depth: 0 @@ -156,7 +156,7 @@ jobs: CXX: ${{ matrix.compiler.cxx }}-${{ matrix.compiler.ver }} steps: - name: Checkout Drogon source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: submodules: true fetch-depth: 0 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index bf8f85eaf5..6d1c581004 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -40,7 +40,7 @@ jobs: steps: - name: Checkout Drogon source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: submodules: true fetch-depth: 0 diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index d02dbd3bd4..b921ee0cc9 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -10,6 +10,6 @@ jobs: codespell: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: sudo apt-get install -y codespell - run: codespell --ignore-words-list="coo,folx,ot,statics,xwindows,NotIn,aNULL," --skip="*.csp" diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index 6325a4baec..4d49cd6958 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -12,7 +12,7 @@ jobs: format: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dos2unix run: sudo apt-get install -y dos2unix @@ -32,7 +32,7 @@ jobs: cpplint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install cpplint run: pip install cpplint diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 37d6393413..527feb9ea0 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Log in to Docker Hub uses: docker/login-action@v3