Skip to content

Commit

Permalink
[CI] Actions version update (#20)
Browse files Browse the repository at this point in the history
Co-authored-by: Florian <[email protected]>
  • Loading branch information
1technophile and 1technophile authored Feb 5, 2025
1 parent 3748bcb commit 0a4ac43
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
-
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
-
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
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v6,linux/arm/v7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_docker_on_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build --tag "${IMAGE_TAG}" .
- name: Save Docker image
run: docker save --output image.tar "${IMAGE_TAG}"
- name: Upload Docker image
uses: actions/upload-artifact@v3 # Updated to v3
uses: actions/upload-artifact@v4 # Updated to v3
with:
name: docker-image
path: image.tar
Expand Down

0 comments on commit 0a4ac43

Please sign in to comment.