Skip to content

Commit

Permalink
[noticket] Update versions of github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lx-wnk committed Jan 24, 2024
1 parent 952099e commit c615ad2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,28 @@ jobs:
uses: actions/checkout@v2
- name: Docker Image Update Checker
id: baseupdatecheck
uses: lucacome/docker-image-update-checker@v1.1.0
uses: lucacome/docker-image-update-checker@v1.2.1
with:
base-image: "thecodingmachine/php:${{ matrix.php }}-v4-slim-cli"
image: "kellerkinder/pipeline-image:PHP_${{ matrix.php }}-NODE_${{ matrix.node }}"
continue-on-error: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2.1.0
uses: docker/setup-qemu-action@v3.0.0
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
driver-opts: network=host
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Login to DockerHub
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Build
id: docker_build
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.1.0
with:
context: .
push: true
Expand All @@ -62,7 +62,7 @@ jobs:
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Push
id: docker_build_push
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.1.0
with:
push: true
tags: "kellerkinder/pipeline-image:PHP_${{ matrix.php }}-NODE_${{ matrix.node }}"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/legacy-build-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,28 @@ jobs:
uses: actions/checkout@v2
- name: Docker Image Update Checker
id: baseupdatecheck
uses: lucacome/docker-image-update-checker@v1.1.0
uses: lucacome/docker-image-update-checker@v1.2.1
with:
base-image: "thecodingmachine/php:${{ matrix.php }}-v4-slim-cli"
image: "kellerkinder/pipeline-image:${{ matrix.php }}"
continue-on-error: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2.1.0
uses: docker/setup-qemu-action@v3.0.0
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
driver-opts: network=host
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Login to DockerHub
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Build
id: docker_build
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.1.0
with:
context: .
push: true
Expand All @@ -60,7 +60,7 @@ jobs:
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Push
id: docker_build_push
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.1.0
with:
push: true
tags: "kellerkinder/pipeline-image:${{ matrix.php }}"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-build-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,28 @@ jobs:
uses: actions/checkout@v2
- name: Docker Image Update Checker
id: baseupdatecheck
uses: lucacome/docker-image-update-checker@v1.1.0
uses: lucacome/docker-image-update-checker@v1.2.1
with:
base-image: "thecodingmachine/php:${{ matrix.php }}-v4-slim-cli"
image: "kellerkinder/pipeline-image:PHP_${{ matrix.php }}-NODE_${{ matrix.node }}"
continue-on-error: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2.1.0
uses: docker/setup-qemu-action@v3.0.0
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
driver-opts: network=host
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Login to DockerHub
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Build
id: docker_build
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.1.0
with:
context: .
push: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: legacy test build
name: test legacy build

on:
pull_request:
Expand All @@ -22,28 +22,28 @@ jobs:
uses: actions/checkout@v2
- name: Docker Image Update Checker
id: baseupdatecheck
uses: lucacome/docker-image-update-checker@v1.1.0
uses: lucacome/docker-image-update-checker@v1.2.1
with:
base-image: "thecodingmachine/php:${{ matrix.php }}-v4-slim-cli"
image: "kellerkinder/pipeline-image:${{ matrix.php }}"
continue-on-error: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2.1.0
uses: docker/setup-qemu-action@v3.0.0
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
driver-opts: network=host
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Login to DockerHub
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' || steps.baseupdatecheck.outputs.needs-updating == 'true' }}
- name: Build
id: docker_build
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.1.0
with:
context: .
push: true
Expand Down

0 comments on commit c615ad2

Please sign in to comment.