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