Skip to content

Commit 4c58d22

Browse files
Bump the actions-version group with 4 updates
Bumps the actions-version group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [docker/login-action](https://github.com/docker/login-action), [actions/cache](https://github.com/actions/cache) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request). Updates `actions/checkout` from 4.1.1 to 4.1.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.1...v4.1.2) Updates `docker/login-action` from 3.0.0 to 3.1.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3.0.0...v3.1.0) Updates `actions/cache` from 4.0.1 to 4.0.2 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.0.1...v4.0.2) Updates `peter-evans/create-pull-request` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@v6.0.1...v6.0.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-version - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-version - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-version - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-version ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d26d368 commit 4c58d22

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
matrix:
3535
configuration: [nompi, greatlakes, bridges2, delta, expanse, expanse-gpu, anvil]
3636
steps:
37-
- uses: actions/checkout@v4.1.1
37+
- uses: actions/checkout@v4.1.2
3838
- name: Login to DockerHub
3939
if: ${{ github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]') }}
40-
uses: docker/login-action@v3.0.0
40+
uses: docker/login-action@v3.1.0
4141
with:
4242
username: ${{ secrets.DOCKER_HUB_USERNAME }}
4343
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

.github/workflows/update-packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
matrix:
1818
branch: [trunk]
1919
steps:
20-
- uses: actions/checkout@v4.1.1
20+
- uses: actions/checkout@v4.1.2
2121
with:
2222
ref: ${{ matrix.branch }}
2323
- uses: tibdex/github-app-token@v2.1
2424
id: generate-token
2525
with:
2626
app_id: ${{ secrets.PR_SUBMITTER_APP_ID }}
2727
private_key: ${{ secrets.PR_SUBMITTER_PRIVATE_KEY }}
28-
- uses: actions/cache@v4.0.1
28+
- uses: actions/cache@v4.0.2
2929
with:
3030
path: ~/.cache/pip
3131
key: ${{ runner.os }}-pip-${{ hashFiles('.github/workflows/requirements.txt') }}
@@ -50,7 +50,7 @@ jobs:
5050
- name: Display updates
5151
run: git diff
5252
- name: Create Pull Request
53-
uses: peter-evans/create-pull-request@v6.0.1
53+
uses: peter-evans/create-pull-request@v6.0.2
5454
with:
5555
base: ${{ matrix.branch }}
5656
commit-message: "[update-packages] Bump package versions"

0 commit comments

Comments
 (0)