From 8b1d2b6e844e210893165ddc0993396cc823d19c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 12:12:25 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 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/v6...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] --- .github/workflows/changelog.yml | 2 +- .github/workflows/ci-c.yml | 8 ++++---- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/release.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 137ace41c..dd320426d 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -9,7 +9,7 @@ jobs: runs-on: 'ubuntu-latest' steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # for conventional commits and getting all git tags persist-credentials: false diff --git a/.github/workflows/ci-c.yml b/.github/workflows/ci-c.yml index 556e5fc8c..c0a645ef1 100644 --- a/.github/workflows/ci-c.yml +++ b/.github/workflows/ci-c.yml @@ -13,7 +13,7 @@ jobs: name: Check C Source Code Formatting runs-on: "ubuntu-latest" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check Source Format run: | clang-format -i -style=file src/*.{c,h} @@ -30,7 +30,7 @@ jobs: - testing container: ghcr.io/greenbone/gvm-libs:${{ matrix.container }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install build dependencies run: sh .github/install-dependencies.sh .github/build-dependencies.list - name: Configure and compile gsad @@ -48,7 +48,7 @@ jobs: run: | apt-get update apt-get install --no-install-recommends -y ca-certificates git libcgreen1-dev - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install build dependencies run: sh .github/install-dependencies.sh .github/build-dependencies.list - name: Configure and compile gsad @@ -68,7 +68,7 @@ jobs: name: Check CMake Formatting runs-on: "ubuntu-latest" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: greenbone/actions/uv@v3 with: install: gersemi diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index fcb364f5f..500845da2 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Initialize CodeQL uses: github/codeql-action/init@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ead9ffcde..f8e9b29cb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: with: release-type-input: ${{ inputs.release-type }} - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # for conventional commits and getting all git tags persist-credentials: false