-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,19 @@ jobs: | |
repository: 'buanet/ioBroker.docker' | ||
token: ${{ secrets.ACTIONS_PAT }} | ||
|
||
- name: Docker Baseimage Checker | ||
id: baseimage | ||
uses: mkumatag/container-image-updater-action@v1.0.6 | ||
- name: Docker baseimage check | ||
id: baseimage-check | ||
uses: lucacome/docker-image-update-checker@v2.0.0 | ||
with: | ||
image: 'buanet/iobroker:latest' | ||
base-image: 'debian:bookworm-slim' | ||
base-image: debian:bookworm-slim | ||
image: buanet/iobroker:latest | ||
|
||
# - name: Docker Baseimage Checker | ||
# id: baseimage | ||
# uses: mkumatag/[email protected] | ||
# with: | ||
# image: 'buanet/iobroker:latest' | ||
# base-image: 'debian:bookworm-slim' | ||
|
||
- name: Fetch ioBroker and nodejs versions | ||
run: | | ||
|
@@ -54,14 +61,14 @@ jobs: | |
- name: Logging result | ||
run: | | ||
echo "base image updated = ${{ steps.baseimage.outputs.needs-update }}" | ||
echo "base image updated = ${{ steps.baseimage-check.outputs.needs-updating }}" | ||
echo "ioBroker version updated = ${{ steps.git-check.outputs.modified }}" | ||
- name: Trigger Build Debian 12 Image (latest) | ||
if: steps.baseimage.outputs.needs-update == 'true' || steps.git-check.outputs.modified == 'true' | ||
uses: benc-uk/[email protected] | ||
with: | ||
ref: 'main' | ||
workflow: 'Build Debian 12 Image (latest)' | ||
repo: 'buanet/iobroker.docker' | ||
token: ${{ secrets.ACTIONS_PAT }} | ||
# - name: Trigger Build Debian 12 Image (latest) | ||
# if: steps.baseimage-check.outputs.needs-updating == 'true' || steps.git-check.outputs.modified == 'true' | ||
# uses: benc-uk/[email protected] | ||
# with: | ||
# ref: 'main' | ||
# workflow: 'Build Debian 12 Image (latest)' | ||
# repo: 'buanet/iobroker.docker' | ||
# token: ${{ secrets.ACTIONS_PAT }} |