From 495a1666a5a533309ee136ad0b1f94dc84442b2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 05:31:01 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/security-baseline.yml | 6 +++--- .github/workflows/validate.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/security-baseline.yml b/.github/workflows/security-baseline.yml index 0d5d5d2..895b306 100644 --- a/.github/workflows/security-baseline.yml +++ b/.github/workflows/security-baseline.yml @@ -19,7 +19,7 @@ jobs: container: image: semgrep/semgrep steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run Semgrep run: semgrep scan --config auto --error @@ -27,7 +27,7 @@ jobs: name: Gitleaks runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Run Gitleaks @@ -39,7 +39,7 @@ jobs: name: Trivy filesystem runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run Trivy uses: aquasecurity/trivy-action@v0.36.0 with: diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 3ca4d0f..7cdd267 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -17,7 +17,7 @@ jobs: - python-worker steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Validate compose run: docker compose -f "${{ matrix.stack }}/docker-compose.yml" config > /dev/null