From 36f0a19a8e10538d205f3c69bab6a84535f8b2c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2026 01:35:17 +0000 Subject: [PATCH] Bump the actions group with 3 updates Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [plexsystems/container-structure-test-action](https://github.com/plexsystems/container-structure-test-action) and [aquasecurity/trivy-action](https://github.com/aquasecurity/trivy-action). Updates `actions/checkout` from 6.0.2 to 7.0.1 - [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.0.2...v7.0.1) Updates `plexsystems/container-structure-test-action` from 0.1.0 to 0.3.0 - [Release notes](https://github.com/plexsystems/container-structure-test-action/releases) - [Commits](https://github.com/plexsystems/container-structure-test-action/compare/v0.1.0...v0.3.0) Updates `aquasecurity/trivy-action` from 0.35.0 to 0.36.0 - [Release notes](https://github.com/aquasecurity/trivy-action/releases) - [Commits](https://github.com/aquasecurity/trivy-action/compare/0.35.0...v0.36.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: plexsystems/container-structure-test-action dependency-version: 0.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: aquasecurity/trivy-action dependency-version: 0.36.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-push.yml | 2 +- .github/workflows/dive.yml | 2 +- .github/workflows/structure-test.yml | 4 ++-- .github/workflows/trivy.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and-push.yml b/.github/workflows/build-and-push.yml index 13ff034..7088a95 100644 --- a/.github/workflows/build-and-push.yml +++ b/.github/workflows/build-and-push.yml @@ -26,7 +26,7 @@ jobs: arch: arm64 steps: - name: Checkout the repo - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 - name: Login to DockerHub uses: docker/login-action@v4 diff --git a/.github/workflows/dive.yml b/.github/workflows/dive.yml index fea47d0..2c547f6 100644 --- a/.github/workflows/dive.yml +++ b/.github/workflows/dive.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout code - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 - name: Build an image from Dockerfile run: | diff --git a/.github/workflows/structure-test.yml b/.github/workflows/structure-test.yml index 6a32692..709ad1c 100644 --- a/.github/workflows/structure-test.yml +++ b/.github/workflows/structure-test.yml @@ -15,14 +15,14 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout the repo - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 - name: Build an image from Dockerfile run: | docker image build --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} . - name: Run container structure tests - uses: plexsystems/container-structure-test-action@v0.1.0 + uses: plexsystems/container-structure-test-action@v0.3.0 with: image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} config: tests.yaml diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml index b41ee89..be6b4b0 100644 --- a/.github/workflows/trivy.yml +++ b/.github/workflows/trivy.yml @@ -24,14 +24,14 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout code - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 - name: Build an image from Dockerfile run: | docker image build --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} . - name: Run Trivy vulnerability scanner (sarif report) - uses: aquasecurity/trivy-action@0.35.0 + uses: aquasecurity/trivy-action@v0.36.0 with: format: 'sarif' image-ref: '${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}'