Skip to content

Commit 4902e2a

Browse files
committed
Fix deprecated Node.js 12 actions with update to Node.js 16 in build-container.yml
1 parent cc35d72 commit 4902e2a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-container.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
needs: [make-date-tag]
2525
if: startsWith(github.repository, 'opensciencegrid/')
2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2828

2929
- name: Generate tag list
3030
id: generate-tag-list
@@ -45,23 +45,23 @@ jobs:
4545
echo "taglist=${tag_list[*]}" >> $GITHUB_OUTPUT
4646
4747
- name: Set up Docker Buildx
48-
uses: docker/setup-buildx-action@v1
48+
uses: docker/setup-buildx-action@v2.7.0
4949

5050
- name: Log in to Docker Hub
51-
uses: docker/login-action@v1
51+
uses: docker/login-action@v2.2.0
5252
with:
5353
username: ${{ secrets.DOCKER_USERNAME }}
5454
password: ${{ secrets.DOCKER_PASSWORD }}
5555

5656
- name: Log in to OSG Harbor
57-
uses: docker/login-action@v1
57+
uses: docker/login-action@v2.2.0
5858
with:
5959
registry: hub.opensciencegrid.org
6060
username: ${{ secrets.OSG_HARBOR_ROBOT_USER }}
6161
password: ${{ secrets.OSG_HARBOR_ROBOT_PASSWORD }}
6262

6363
- name: Build and push Docker images
64-
uses: docker/build-push-action@v2.2.0
64+
uses: docker/build-push-action@v4
6565
with:
6666
context: .
6767
push: true

0 commit comments

Comments
 (0)