From 0fd2b3fc918120f8ca111ecf51d51b39c3313a5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 17:13:18 +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/ai-docker-image.yml | 2 +- .github/workflows/api-docker-deploy.yml | 2 +- .github/workflows/api-docker-image.yml | 2 +- .github/workflows/api-dotnet-testing.yml | 2 +- .github/workflows/node-testing.yml | 2 +- .github/workflows/python-lint.yml | 2 +- .github/workflows/semgrep.yml | 2 +- .github/workflows/sonarscan.yml | 2 +- .github/workflows/webapp-docker-image.yml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ai-docker-image.yml b/.github/workflows/ai-docker-image.yml index d4bd7c7d..104619e5 100644 --- a/.github/workflows/ai-docker-image.yml +++ b/.github/workflows/ai-docker-image.yml @@ -9,7 +9,7 @@ jobs: working-directory: ./ai git_hash: $(git rev-parse --short "$GITHUB_SHA") steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Build the AI Docker image run: docker build . --file Dockerfile --tag ai:${{ env.git_hash }} working-directory: ${{ env.working-directory}} diff --git a/.github/workflows/api-docker-deploy.yml b/.github/workflows/api-docker-deploy.yml index cc98bc72..50fe89b3 100644 --- a/.github/workflows/api-docker-deploy.yml +++ b/.github/workflows/api-docker-deploy.yml @@ -9,7 +9,7 @@ jobs: working-directory: ./api git_hash: $(git rev-parse --short "$GITHUB_SHA") steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Build the API Docker image run: docker build . --file Dockerfile --tag dnprogramming/api:latest working-directory: ${{ env.working-directory}} diff --git a/.github/workflows/api-docker-image.yml b/.github/workflows/api-docker-image.yml index 9731017a..115f9188 100644 --- a/.github/workflows/api-docker-image.yml +++ b/.github/workflows/api-docker-image.yml @@ -9,7 +9,7 @@ jobs: working-directory: ./api git_hash: $(git rev-parse --short "$GITHUB_SHA") steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Build the API Docker image run: docker build . --file Dockerfile --tag api:${{ env.git_hash }} working-directory: ${{ env.working-directory}} diff --git a/.github/workflows/api-dotnet-testing.yml b/.github/workflows/api-dotnet-testing.yml index f0283dc6..5937691d 100644 --- a/.github/workflows/api-dotnet-testing.yml +++ b/.github/workflows/api-dotnet-testing.yml @@ -12,7 +12,7 @@ jobs: env: working-directory: ./api steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup .NET uses: actions/setup-dotnet@v5 with: diff --git a/.github/workflows/node-testing.yml b/.github/workflows/node-testing.yml index c0f92cfc..d6c7ad96 100644 --- a/.github/workflows/node-testing.yml +++ b/.github/workflows/node-testing.yml @@ -20,7 +20,7 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js uses: actions/setup-node@v6 with: diff --git a/.github/workflows/python-lint.yml b/.github/workflows/python-lint.yml index 6b423f37..e7a609e1 100644 --- a/.github/workflows/python-lint.yml +++ b/.github/workflows/python-lint.yml @@ -11,7 +11,7 @@ jobs: matrix: python-version: ["3.12"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 with: diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml index 3221b11e..c5f2a465 100644 --- a/.github/workflows/semgrep.yml +++ b/.github/workflows/semgrep.yml @@ -20,5 +20,5 @@ jobs: container: image: returntocorp/semgrep steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: semgrep ci diff --git a/.github/workflows/sonarscan.yml b/.github/workflows/sonarscan.yml index 11293aac..eb9ef63e 100644 --- a/.github/workflows/sonarscan.yml +++ b/.github/workflows/sonarscan.yml @@ -9,7 +9,7 @@ jobs: name: Build and analyze runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: SonarCloud Scan diff --git a/.github/workflows/webapp-docker-image.yml b/.github/workflows/webapp-docker-image.yml index 6e217ae9..56dcc7bd 100644 --- a/.github/workflows/webapp-docker-image.yml +++ b/.github/workflows/webapp-docker-image.yml @@ -9,7 +9,7 @@ jobs: working-directory: ./webapp git_hash: $(git rev-parse --short "$GITHUB_SHA") steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Build the Web Application Docker image run: docker build . --file Dockerfile --tag webapp:${{ env.git_hash }} working-directory: ${{ env.working-directory}}