From 4c58d2280af34e129056a894f8bae5d82ac6ca03 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 11:12:10 +0000 Subject: [PATCH] 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](https://github.com/actions/checkout/compare/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](https://github.com/docker/login-action/compare/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](https://github.com/actions/cache/compare/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](https://github.com/peter-evans/create-pull-request/compare/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] --- .github/workflows/build.yml | 4 ++-- .github/workflows/update-packages.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c07c48d6..49b06cbb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,10 +34,10 @@ jobs: matrix: configuration: [nompi, greatlakes, bridges2, delta, expanse, expanse-gpu, anvil] steps: - - uses: actions/checkout@v4.1.1 + - uses: actions/checkout@v4.1.2 - name: Login to DockerHub if: ${{ github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]') }} - uses: docker/login-action@v3.0.0 + uses: docker/login-action@v3.1.0 with: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} diff --git a/.github/workflows/update-packages.yml b/.github/workflows/update-packages.yml index 1150c503..8d7d4b43 100644 --- a/.github/workflows/update-packages.yml +++ b/.github/workflows/update-packages.yml @@ -17,7 +17,7 @@ jobs: matrix: branch: [trunk] steps: - - uses: actions/checkout@v4.1.1 + - uses: actions/checkout@v4.1.2 with: ref: ${{ matrix.branch }} - uses: tibdex/github-app-token@v2.1 @@ -25,7 +25,7 @@ jobs: with: app_id: ${{ secrets.PR_SUBMITTER_APP_ID }} private_key: ${{ secrets.PR_SUBMITTER_PRIVATE_KEY }} - - uses: actions/cache@v4.0.1 + - uses: actions/cache@v4.0.2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('.github/workflows/requirements.txt') }} @@ -50,7 +50,7 @@ jobs: - name: Display updates run: git diff - name: Create Pull Request - uses: peter-evans/create-pull-request@v6.0.1 + uses: peter-evans/create-pull-request@v6.0.2 with: base: ${{ matrix.branch }} commit-message: "[update-packages] Bump package versions"