Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ats-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}}
Expand Down Expand Up @@ -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}}
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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}}
Expand Down
Loading