From f57b4556e687ec1556795eb106286c6783b8f9c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Feb 2025 01:57:47 +0000 Subject: [PATCH] Bump the github-actions group with 3 updates Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [docker/login-action](https://github.com/docker/login-action) and [docker/metadata-action](https://github.com/docker/metadata-action). Updates `actions/checkout` from 2 to 4 - [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/v2...v4) Updates `docker/login-action` from 1 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1...v3) Updates `docker/metadata-action` from 3 to 5 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](https://github.com/docker/metadata-action/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/metadata-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/publish-benchmark-images.yaml | 6 +++--- .github/workflows/publish-operator.yaml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish-benchmark-images.yaml b/.github/workflows/publish-benchmark-images.yaml index 550ff56..3113075 100644 --- a/.github/workflows/publish-benchmark-images.yaml +++ b/.github/workflows/publish-benchmark-images.yaml @@ -31,10 +31,10 @@ jobs: # - component: pytorch-benchmarks steps: - name: Check out the repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -42,7 +42,7 @@ jobs: - name: Calculate metadata for image id: image-meta - uses: docker/metadata-action@v3 + uses: docker/metadata-action@v5 with: images: ghcr.io/stackhpc/kube-perftest-${{ matrix.component }} # Produce the branch name or tag and the SHA as tags diff --git a/.github/workflows/publish-operator.yaml b/.github/workflows/publish-operator.yaml index d9a30b2..c575db7 100644 --- a/.github/workflows/publish-operator.yaml +++ b/.github/workflows/publish-operator.yaml @@ -19,10 +19,10 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -30,7 +30,7 @@ jobs: - name: Calculate metadata for image id: image-meta - uses: docker/metadata-action@v3 + uses: docker/metadata-action@v5 with: images: ghcr.io/stackhpc/kube-perftest-controller # Produce the branch name or tag and the SHA as tags @@ -56,7 +56,7 @@ jobs: needs: build_push_operator_image steps: - name: Check out the repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: # This is important for the semver action to work correctly # when determining the number of commits since the last tag