Skip to content

Commit c615ad2

Browse files
author
Alex
committed
[noticket] Update versions of github actions
1 parent 952099e commit c615ad2

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.github/workflows/build-flow.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,28 @@ jobs:
2525
uses: actions/checkout@v2
2626
- name: Docker Image Update Checker
2727
id: baseupdatecheck
28-
uses: lucacome/docker-image-update-checker@v1.1.0
28+
uses: lucacome/docker-image-update-checker@v1.2.1
2929
with:
3030
base-image: "thecodingmachine/php:${{ matrix.php }}-v4-slim-cli"
3131
image: "kellerkinder/pipeline-image:PHP_${{ matrix.php }}-NODE_${{ matrix.node }}"
3232
continue-on-error: true
3333
- name: Set up QEMU
34-
uses: docker/setup-qemu-action@v2.1.0
34+
uses: docker/setup-qemu-action@v3.0.0
3535
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
3636
- name: Set up Docker Buildx
3737
uses: docker/setup-buildx-action@v1
3838
with:
3939
driver-opts: network=host
4040
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
4141
- name: Login to DockerHub
42-
uses: docker/login-action@v2.1.0
42+
uses: docker/login-action@v3.0.0
4343
with:
4444
username: ${{ secrets.DOCKERHUB_USERNAME }}
4545
password: ${{ secrets.DOCKERHUB_TOKEN }}
4646
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
4747
- name: Build
4848
id: docker_build
49-
uses: docker/build-push-action@v3.2.0
49+
uses: docker/build-push-action@v5.1.0
5050
with:
5151
context: .
5252
push: true
@@ -62,7 +62,7 @@ jobs:
6262
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
6363
- name: Push
6464
id: docker_build_push
65-
uses: docker/build-push-action@v3.2.0
65+
uses: docker/build-push-action@v5.1.0
6666
with:
6767
push: true
6868
tags: "kellerkinder/pipeline-image:PHP_${{ matrix.php }}-NODE_${{ matrix.node }}"

.github/workflows/legacy-build-flow.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,28 +24,28 @@ jobs:
2424
uses: actions/checkout@v2
2525
- name: Docker Image Update Checker
2626
id: baseupdatecheck
27-
uses: lucacome/docker-image-update-checker@v1.1.0
27+
uses: lucacome/docker-image-update-checker@v1.2.1
2828
with:
2929
base-image: "thecodingmachine/php:${{ matrix.php }}-v4-slim-cli"
3030
image: "kellerkinder/pipeline-image:${{ matrix.php }}"
3131
continue-on-error: true
3232
- name: Set up QEMU
33-
uses: docker/setup-qemu-action@v2.1.0
33+
uses: docker/setup-qemu-action@v3.0.0
3434
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
3535
- name: Set up Docker Buildx
3636
uses: docker/setup-buildx-action@v1
3737
with:
3838
driver-opts: network=host
3939
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
4040
- name: Login to DockerHub
41-
uses: docker/login-action@v2.1.0
41+
uses: docker/login-action@v3.0.0
4242
with:
4343
username: ${{ secrets.DOCKERHUB_USERNAME }}
4444
password: ${{ secrets.DOCKERHUB_TOKEN }}
4545
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
4646
- name: Build
4747
id: docker_build
48-
uses: docker/build-push-action@v3.2.0
48+
uses: docker/build-push-action@v5.1.0
4949
with:
5050
context: .
5151
push: true
@@ -60,7 +60,7 @@ jobs:
6060
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
6161
- name: Push
6262
id: docker_build_push
63-
uses: docker/build-push-action@v3.2.0
63+
uses: docker/build-push-action@v5.1.0
6464
with:
6565
push: true
6666
tags: "kellerkinder/pipeline-image:${{ matrix.php }}"

.github/workflows/test-build-flow.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,28 @@ jobs:
2323
uses: actions/checkout@v2
2424
- name: Docker Image Update Checker
2525
id: baseupdatecheck
26-
uses: lucacome/docker-image-update-checker@v1.1.0
26+
uses: lucacome/docker-image-update-checker@v1.2.1
2727
with:
2828
base-image: "thecodingmachine/php:${{ matrix.php }}-v4-slim-cli"
2929
image: "kellerkinder/pipeline-image:PHP_${{ matrix.php }}-NODE_${{ matrix.node }}"
3030
continue-on-error: true
3131
- name: Set up QEMU
32-
uses: docker/setup-qemu-action@v2.1.0
32+
uses: docker/setup-qemu-action@v3.0.0
3333
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
3434
- name: Set up Docker Buildx
3535
uses: docker/setup-buildx-action@v1
3636
with:
3737
driver-opts: network=host
3838
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
3939
- name: Login to DockerHub
40-
uses: docker/login-action@v2.1.0
40+
uses: docker/login-action@v3.0.0
4141
with:
4242
username: ${{ secrets.DOCKERHUB_USERNAME }}
4343
password: ${{ secrets.DOCKERHUB_TOKEN }}
4444
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
4545
- name: Build
4646
id: docker_build
47-
uses: docker/build-push-action@v3.2.0
47+
uses: docker/build-push-action@v5.1.0
4848
with:
4949
context: .
5050
push: true

.github/workflows/legacy-test-build-flow.yml renamed to .github/workflows/test-legacy-build-flow.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: legacy test build
1+
name: test legacy build
22

33
on:
44
pull_request:
@@ -22,28 +22,28 @@ jobs:
2222
uses: actions/checkout@v2
2323
- name: Docker Image Update Checker
2424
id: baseupdatecheck
25-
uses: lucacome/docker-image-update-checker@v1.1.0
25+
uses: lucacome/docker-image-update-checker@v1.2.1
2626
with:
2727
base-image: "thecodingmachine/php:${{ matrix.php }}-v4-slim-cli"
2828
image: "kellerkinder/pipeline-image:${{ matrix.php }}"
2929
continue-on-error: true
3030
- name: Set up QEMU
31-
uses: docker/setup-qemu-action@v2.1.0
31+
uses: docker/setup-qemu-action@v3.0.0
3232
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
3333
- name: Set up Docker Buildx
3434
uses: docker/setup-buildx-action@v1
3535
with:
3636
driver-opts: network=host
3737
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
3838
- name: Login to DockerHub
39-
uses: docker/login-action@v2.1.0
39+
uses: docker/login-action@v3.0.0
4040
with:
4141
username: ${{ secrets.DOCKERHUB_USERNAME }}
4242
password: ${{ secrets.DOCKERHUB_TOKEN }}
4343
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
4444
- name: Build
4545
id: docker_build
46-
uses: docker/build-push-action@v3.2.0
46+
uses: docker/build-push-action@v5.1.0
4747
with:
4848
context: .
4949
push: true

0 commit comments

Comments
 (0)