Skip to content

Commit 3d53bfc

Browse files
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](actions/checkout@v2...v4) Updates `docker/login-action` from 1 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v1...v3) Updates `docker/metadata-action` from 3 to 5 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@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] <[email protected]>
1 parent 8946b35 commit 3d53bfc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/publish-benchmark-images.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ jobs:
3131
# - component: pytorch-benchmarks
3232
steps:
3333
- name: Check out the repository
34-
uses: actions/checkout@v2
34+
uses: actions/checkout@v4
3535

3636
- name: Login to GitHub Container Registry
37-
uses: docker/login-action@v1
37+
uses: docker/login-action@v3
3838
with:
3939
registry: ghcr.io
4040
username: ${{ github.actor }}
4141
password: ${{ secrets.GITHUB_TOKEN }}
4242

4343
- name: Calculate metadata for image
4444
id: image-meta
45-
uses: docker/metadata-action@v3
45+
uses: docker/metadata-action@v5
4646
with:
4747
images: ghcr.io/stackhpc/kube-perftest-${{ matrix.component }}
4848
# Produce the branch name or tag and the SHA as tags

.github/workflows/publish-operator.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ jobs:
1919
security-events: write # required for pushing SARIF files
2020
steps:
2121
- name: Check out the repository
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323

2424
- name: Login to GitHub Container Registry
25-
uses: docker/login-action@v1
25+
uses: docker/login-action@v3
2626
with:
2727
registry: ghcr.io
2828
username: ${{ github.actor }}
2929
password: ${{ secrets.GITHUB_TOKEN }}
3030

3131
- name: Calculate metadata for image
3232
id: image-meta
33-
uses: docker/metadata-action@v3
33+
uses: docker/metadata-action@v5
3434
with:
3535
images: ghcr.io/stackhpc/kube-perftest-controller
3636
# Produce the branch name or tag and the SHA as tags
@@ -56,7 +56,7 @@ jobs:
5656
needs: build_push_operator_image
5757
steps:
5858
- name: Check out the repository
59-
uses: actions/checkout@v2
59+
uses: actions/checkout@v4
6060
with:
6161
# This is important for the semver action to work correctly
6262
# when determining the number of commits since the last tag

0 commit comments

Comments
 (0)