Skip to content

Commit

Permalink
Update workflow definition
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-axual committed Jan 14, 2025
1 parent d285bee commit 0d767e1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
driver-opts: network=host

- name: Build and push to local registry
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release-push-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,33 @@ jobs:
echo "building and tagging release: $RELEASE_TAG"
- 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 GHCR
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: login to Docker hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: login to Axual Open Source Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: registry.axual.io
username: ${{ secrets.AXUAL_REGISTRY_USER }}
password: ${{ secrets.AXUAL_REGISTRY_TOKEN }}

- name: build and push KSML Runner
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: Dockerfile
target: ksml
Expand Down

0 comments on commit 0d767e1

Please sign in to comment.