Skip to content

Commit

Permalink
ci(actions): update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Airkro committed Apr 23, 2024
1 parent bd0c09c commit 30e6c94
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/arch.push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ jobs:
platforms: linux/amd64,linux/arm64/v8
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 Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: airkro
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Build and push arch 1
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: conf/arch.dockerfile
target: latest
Expand All @@ -41,7 +41,7 @@ jobs:
push: true

- name: Build and push arch 2
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: conf/arch.dockerfile
target: ssh
Expand All @@ -50,7 +50,7 @@ jobs:
push: true

- name: Build and push arch 3
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: conf/arch.dockerfile
target: python3
Expand All @@ -59,7 +59,7 @@ jobs:
push: true

- name: Build and push arch 4
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: conf/arch.dockerfile
target: cocoapods
Expand All @@ -68,7 +68,7 @@ jobs:
push: true

- name: Build and push arch 5
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: conf/arch.dockerfile
target: sentry
Expand All @@ -77,7 +77,7 @@ jobs:
push: true

- name: Build and push arch 6
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: conf/arch.dockerfile
target: mp-alipay-ci
Expand All @@ -86,7 +86,7 @@ jobs:
push: true

- name: Build and push arch 7
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: conf/arch.dockerfile
target: mp-wechat-ci
Expand All @@ -95,7 +95,7 @@ jobs:
push: true

- name: Build and push arch 8
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: conf/arch.dockerfile
target: mp-ci
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
DOCKER_BUILDKIT: 1
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

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

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: airkro
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: conf/ci.dockerfile
target: qci_worker
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set Docker Hub Description
uses: peter-evans/dockerhub-description@v3
uses: peter-evans/dockerhub-description@v4
with:
username: airkro
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/playwright.push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
DOCKER_BUILDKIT: 1
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

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

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: airkro
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand Down

0 comments on commit 30e6c94

Please sign in to comment.