From 9cb029a2d4f86766adca606111706efca8b9428e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Mar 2026 11:03:47 +0000 Subject: [PATCH] chore: Bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [docker/login-action](https://github.com/docker/login-action). Updates `styfle/cancel-workflow-action` from 0.13.0 to 0.13.1 - [Release notes](https://github.com/styfle/cancel-workflow-action/releases) - [Commits](https://github.com/styfle/cancel-workflow-action/compare/0.13.0...0.13.1) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3...v4) --- updated-dependencies: - dependency-name: styfle/cancel-workflow-action dependency-version: 0.13.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 4231f4c..09c96d1 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -44,7 +44,7 @@ jobs: steps: - name: Cancel previous runs if: github.event_name == 'pull_request' - uses: styfle/cancel-workflow-action@0.13.0 + uses: styfle/cancel-workflow-action@0.13.1 - name: Checkout uses: actions/checkout@v6 @@ -60,7 +60,7 @@ jobs: steps: - name: Cancel previous runs if: github.event_name == 'pull_request' - uses: styfle/cancel-workflow-action@0.13.0 + uses: styfle/cancel-workflow-action@0.13.1 - name: Checkout uses: actions/checkout@v6 @@ -92,7 +92,7 @@ jobs: category: trivy-ubuntu - name: Upload Trivy scan results as an artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: trivy-ubuntu path: trivy-results-ubuntu.sarif @@ -100,7 +100,7 @@ jobs: - name: Authenticate to Docker Hub if: github.event_name != 'pull_request' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }}