10 Commits
Author SHA1 Message Date
andreas 25c6bbc0f5 Update .github/workflows/verify_compose.yml
Actionlint / build (push) Successful in 25s
2026-08-12 10:30:30 +03:00
andreas 07a54a69a2 Add .github/workflows/veryfy_compose.yml
Actionlint / build (push) Successful in 25s
2026-08-12 10:29:25 +03:00
andreas cea136b866 Update .github/workflows/lint.yml
Actionlint / build (push) Successful in 28s
2026-08-12 10:10:37 +03:00
andreas ded825f913 Update .github/workflows/docker-build.yml
Actionlint / build (push) Successful in 27s
2026-08-10 18:13:43 +03:00
andreas 4bff8356f3 Update .github/workflows/docker-build.yml
Actionlint / build (push) Successful in 27s
2026-08-10 18:11:58 +03:00
andreas 57ef90e61d Update action.yml
Actionlint / build (push) Successful in 26s
2026-08-10 18:03:06 +03:00
andreas 7bae878fb2 Update .github/workflows/lint.yml
Actionlint / build (push) Successful in 25s
2026-08-10 15:38:28 +03:00
renovate 01e9a3730b Update Github Actions #none major
Actionlint / build (push) Successful in 26s
2026-08-10 15:33:18 +03:00
renovate 5fd2e148d4 Merge pull request 'Update int128/docker-build-cache-config-action action to v1.66.0 #none minor (main)' (#54) from renovate-main-github-actions into main
Actionlint / build (push) Successful in 26s
2026-08-10 13:06:39 +03:00
renovate df6122a772 Update int128/docker-build-cache-config-action action to v1.66.0 #none minor
Actionlint / build (push) Successful in 25s
2026-08-10 09:06:40 +00:00
4 changed files with 46 additions and 5 deletions
+4 -3
View File
@@ -30,13 +30,15 @@ on:
jobs: jobs:
build: build:
runs-on: test-runner runs-on: slim
steps: steps:
- name: Checkout repository - name: Checkout repository
if: ${{ inputs.checkout == 'true' }} if: ${{ inputs.checkout == 'true' }}
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with: with:
fetch-depth: '0' fetch-depth: '0'
- name: Copy Git Credentials
run: cat /tmp/git-credentials* >> .git/config
- name: Bump version and push tag - name: Bump version and push tag
id: tag id: tag
if: ${{ inputs.tag == 'true' }} if: ${{ inputs.tag == 'true' }}
@@ -48,7 +50,6 @@ jobs:
WITH_V: true WITH_V: true
PRERELEASE: true PRERELEASE: true
PRERELEASE_SUFFIX: ${{ github.ref_name }} PRERELEASE_SUFFIX: ${{ github.ref_name }}
verbose: true
- name: Extract Docker metadata - name: Extract Docker metadata
id: meta id: meta
uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0 uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0
@@ -63,7 +64,7 @@ jobs:
# disabled if major zero # disabled if major zero
type=semver,pattern={{major}},value=${{steps.tag.outputs.tag}},enable=${{ !startsWith(steps.tag.outputs.tag, 'v0.') }} type=semver,pattern={{major}},value=${{steps.tag.outputs.tag}},enable=${{ !startsWith(steps.tag.outputs.tag, 'v0.') }}
images: ${{ inputs.registry }}/${{ inputs.image_name }} images: ${{ inputs.registry }}/${{ inputs.image_name }}
- uses: int128/docker-build-cache-config-action@8e8b3ba8f4b330eb0e3deedf1d7893ecec5824e5 # v1.65.0 - uses: int128/docker-build-cache-config-action@341cdf5b650bc4d8d5289a8df4e0389183711712 # v1.66.0
id: cache id: cache
with: with:
image: ${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache image: ${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache
+1 -1
View File
@@ -21,7 +21,7 @@ jobs:
- name: Verify Action - name: Verify Action
run: actionlint -ignore 'unexpected key "description" for "workflow" section' -ignore 'nexpected key "inputs" for "workflow" section.' -ignore 'unexpected key "runs" for "workflow" section.' -ignore '"on" section is missing in workflow' -ignore '"jobs" section is missing in workflow' action.yml run: actionlint -ignore 'unexpected key "description" for "workflow" section' -ignore 'nexpected key "inputs" for "workflow" section.' -ignore 'unexpected key "runs" for "workflow" section.' -ignore '"on" section is missing in workflow' -ignore '"jobs" section is missing in workflow' action.yml
- name: Verify Workflow - name: Verify Workflow
run: actionlint -ignore 'label "slim" is unknown' .github/workflows/docker-build.yml run: actionlint -ignore 'label "slim" is unknown' -ignore 'label "test-runner" is unknown' .github/workflows/*.yml
- name: tag latest after success - name: tag latest after success
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
id: tag id: tag
+38
View File
@@ -0,0 +1,38 @@
name: VerifyCompose
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
on:
workflow_call:
inputs:
ref: # id of input
description: 'ref to tag e.g. refs/heads/main'
type: string
default: 'refs/heads/main'
tagname: # id of input
description: 'tag name (default: latest)'
default: 'latest'
type: string
jobs:
build:
runs-on: slim
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Verify Compose File
run: docker compose config -q
- name: tag latest after success
if: ${{ github.ref == inputs.ref }}
id: tag
run: |
git tag -f ${{ inputs.tagname }}
git push --tags -f
+3 -1
View File
@@ -32,6 +32,8 @@ runs:
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with: with:
fetch-depth: '0' fetch-depth: '0'
- name: Copy Git Credentials
run: cat /tmp/git-credentials* >> .git/config
- name: Bump version and push tag - name: Bump version and push tag
id: tag id: tag
if: ${{ inputs.tag == 'true' }} if: ${{ inputs.tag == 'true' }}
@@ -57,7 +59,7 @@ runs:
# disabled if major zero # disabled if major zero
type=semver,pattern={{major}},value=${{steps.tag.outputs.tag}},enable=${{ !startsWith(steps.tag.outputs.tag, 'v0.') }} type=semver,pattern={{major}},value=${{steps.tag.outputs.tag}},enable=${{ !startsWith(steps.tag.outputs.tag, 'v0.') }}
images: ${{ inputs.registry }}/${{ inputs.image_name }} images: ${{ inputs.registry }}/${{ inputs.image_name }}
- uses: int128/docker-build-cache-config-action@8e8b3ba8f4b330eb0e3deedf1d7893ecec5824e5 # v1.65.0 - uses: int128/docker-build-cache-config-action@341cdf5b650bc4d8d5289a8df4e0389183711712 # v1.66.0
id: cache id: cache
with: with:
image: ${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache image: ${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache