Skip to content

Commit

Permalink
build: Update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jachym-tousek-keboola committed Jun 7, 2024
1 parent b76a37c commit a50944f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-repo-tools/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: docker/build-push-action@v4
- uses: docker/build-push-action@v5
with:
context: ${{ github.workspace }}/build/package/linux/${{ inputs.type }}
file: ${{ github.workspace }}/build/package/linux/${{ inputs.type }}/Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/push-image-aws-azure-gcp/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ runs:
- id: 'gcpAuth'
name: Authenticate to GCP
uses: google-github-actions/auth@v1
uses: google-github-actions/auth@v2
with:
token_format: access_token
create_credentials_file: true
Expand All @@ -92,7 +92,7 @@ runs:
docker push $REGISTRY/$REPOSITORY:$TAG
- name: Login to Azure ACR
uses: azure/docker-login@v1
uses: azure/docker-login@v2
with:
login-server: ${{ inputs.acrRegistry }}
username: ${{ inputs.acrUsername }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Docker login
uses: docker/login-action@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-service-apps-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Docker login
uses: docker/login-action@v3
Expand All @@ -62,7 +62,7 @@ jobs:
password: ${{ env.DOCKERHUB_TOKEN }}

- name: Build image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
load: true
tags: ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-service-stream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Docker login
uses: docker/login-action@v3
Expand All @@ -65,7 +65,7 @@ jobs:
password: ${{ env.DOCKERHUB_TOKEN }}

- name: Build Service image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
load: true
tags: ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-service-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Docker login
uses: docker/login-action@v3
Expand All @@ -69,7 +69,7 @@ jobs:
password: ${{ env.DOCKERHUB_TOKEN }}

- name: Build image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
load: true
tags: ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
Expand Down

0 comments on commit a50944f

Please sign in to comment.