From 0ebbef4879835d6b7176fc525795920927f8dfc1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 21:06:17 +0000 Subject: [PATCH] Bump the action-updates group with 2 updates Bumps the action-updates group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [docker/login-action](https://github.com/docker/login-action). Updates `actions/checkout` from 4 to 7 - [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...v7) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-updates - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/ats-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ats-ci.yml b/.github/workflows/ats-ci.yml index 60ec22dd3..99e9fadd3 100644 --- a/.github/workflows/ats-ci.yml +++ b/.github/workflows/ats-ci.yml @@ -24,7 +24,7 @@ jobs: name: Build Docker steps: - name: Check out the Amanzi repo - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: amanzi/amanzi ref: master @@ -44,7 +44,7 @@ jobs: echo "AMANZI_BRANCH=$(git ls-remote --heads origin ${GITHUB_REF_NAME} | sed 's/.*refs\/heads\///')" >> $GITHUB_ENV - name: If so, checkout Amanzi to get the right TPLs version id: amanzi_branch_checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: amanzi/amanzi ref: ${{env.AMANZI_BRANCH}} @@ -78,7 +78,7 @@ jobs: echo "ARCH=amd64" >> $GITHUB_ENV fi - name: Login to Docker Hub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{secrets.DOCKERHUB_USERNAME}} password: ${{secrets.DOCKERHUB_PASSWORD}} @@ -103,7 +103,7 @@ jobs: needs: build steps: - name: Check out the Amanzi repo - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: amanzi/amanzi ref: master @@ -142,7 +142,7 @@ jobs: needs: build steps: - name: Check out the Amanzi repo - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: amanzi/amanzi ref: master @@ -178,7 +178,7 @@ jobs: if: success() steps: - name: Check out the ATS repo - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: amanzi/amanzi ref: master @@ -192,7 +192,7 @@ jobs: echo "ATS_BRANCH_TAG=$(echo $GITHUB_REF_NAME | sed -e 's/\//--/g')" >> $GITHUB_ENV fi - name: Login to Docker Hub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{secrets.DOCKERHUB_USERNAME}} password: ${{secrets.DOCKERHUB_PASSWORD}}