Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed CI to use latest actions to get away from the Node 16 deprecation. #2912

Merged
merged 8 commits into from
Mar 13, 2024
8 changes: 4 additions & 4 deletions .github/workflows/dockerhub-publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ jobs:
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3.1
MicahGale marked this conversation as resolved.
Show resolved Hide resolved
-
name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5.2.0
MicahGale marked this conversation as resolved.
Show resolved Hide resolved
with:
push: true
tags: openmc/openmc:develop
Expand Down
Loading