From f970bcb94cf49aa8de74291254f68aa450ab2579 Mon Sep 17 00:00:00 2001 From: FML128 Date: Wed, 22 Jan 2025 23:47:06 +0100 Subject: [PATCH 001/145] Update builder/action.yml --- builder/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/action.yml b/builder/action.yml index 7c4c1f3..e5b130d 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -27,7 +27,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.211903 + uses: docker://git.fml128.ch/fml128/idkyet-builder:buildah with: args: build ${{ inputs.layer_config_file }} env: From 0438a90aec4c61daf3263006ee901ccb3b0563ec Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 24 Jan 2025 02:02:21 +0000 Subject: [PATCH 002/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.240101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 74cdef2..7349501 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.211903 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.240101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.211903 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.240101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 7c4c1f3..6327692 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -27,7 +27,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.211903 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.240101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 60bd943..7759a0c 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.211903 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.240101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 44a05d53c2dfe64eb04f390e3cabad4dc20f8b08 Mon Sep 17 00:00:00 2001 From: Merlin Jehli Date: Fri, 24 Jan 2025 12:43:03 +0100 Subject: [PATCH 003/145] changes for new builder --- action.yml | 28 +++++++++++++++++++++++++--- builder/action.yml | 8 ++++++++ 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 280bd1a..a7f19e9 100644 --- a/action.yml +++ b/action.yml @@ -10,12 +10,21 @@ inputs: version: description: 'version for release' required: true + registry_username: + description: 'username for registry' + required: true + registry_password: + description: 'password for registry' + required: true sb_db_key: description: 'secure_boot db key to sign efi' required: false sb_db_pem: description: 'secure_boot db pem to sign efi' required: false + api_auth_token: + description: 'api_auth_token if needed to download base images' + required: false #outputs: # hashes: # description: 'json dict of hashes of all files' @@ -24,22 +33,35 @@ runs: steps: - name: Restore and build aur uses: ./aur + with: + layer_config_file: ${{ inputs.layer_config_file }} - name: Build images uses: ./builder + with: + layer_config_file: ${{ inputs.layer_config_file }} + out_dir: ${{ inputs.out_dir }} + registry_username: ${{ inputs.registry_username }} + registry_password: ${{ inputs.registry_password }} + version: ${{ inputs.version }} + sb_db_key: ${{ inputs.sb_db_key }} + sb_db_pem: ${{ inputs.sb_db_pem }} + api_auth_token: ${{ inputs.api_auth_token }} + - name: Upload Packages run: | cd ${{ gitea.workspace }}/out for f in *;do echo "Uploading $f" du -sh $f - curl --user "${{ gitea.actor }}:${{ secrets.PACKET_TOKEN }}" \ + curl --user "${{ inputs.registry_username }}:${{ inputs.registry_password }}" \ --upload-file "$f" \ "https://git.fml128.ch/api/packages/${{ github.repository_owner }}/generic/${GITHUB_REPOSITORY#*/}/${{ steps.version.outputs.RELEASE_VERSION }}/$f" done + shell: bash - name: If failure delete packages if: failure() run: | - curl --user "${{ gitea.actor }}:${{ secrets.PACKET_TOKEN }}" \ + curl --user "${{ inputs.registry_username }}:${{ inputs.registry_password }}" \ -X DELETE \ "https://git.fml128.ch/api/packages/${{ github.repository_owner }}/generic/${GITHUB_REPOSITORY#*/}/${{ steps.version.outputs.RELEASE_VERSION }}" - + shell: bash \ No newline at end of file diff --git a/builder/action.yml b/builder/action.yml index 6327692..6c9e6f5 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -10,6 +10,12 @@ inputs: version: description: 'version for release' required: true + registry_username: + description: 'username for registry' + required: true + registry_password: + description: 'password for registry' + required: true sb_db_key: description: 'secure_boot db key to sign efi' required: false @@ -33,6 +39,8 @@ runs: env: INPUT_VERSION: ${{ inputs.version }} INPUT_OUT_DIR: ${{ inputs.out_dir }} + INPUT_REGISTRY_USERNAME: ${{ inputs.registry_username }} + INPUT_REGISTRY_PASSWORD: ${{ inputs.registry_password }} INPUT_SB_DB_KEY: ${{ inputs.sb_db_key }} INPUT_SB_DB_PEM: ${{ inputs.sb_db_pem }} INPUT_API_AUTH_TOKEN: ${{ inputs.api_auth_token }} From 5ccad447a307b3faa2dbb0eb46438ed50e238e93 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 24 Jan 2025 12:29:46 +0000 Subject: [PATCH 004/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.241224 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 7349501..fcccbad 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.240101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241224 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.240101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241224 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 6c9e6f5..990acc3 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.240101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241224 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 7759a0c..6f65c4f 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.240101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241224 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From d25bf73ce2076cc82470b93c9a8b050e3044ab96 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 24 Jan 2025 12:42:17 +0000 Subject: [PATCH 005/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.241238 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index fcccbad..1af7fa4 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241224 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241238 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241224 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241238 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 990acc3..612ca07 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241224 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241238 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 6f65c4f..06ba418 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241224 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241238 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From f7b15938f8e7e089389286ab4fcb8311d69e422e Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 24 Jan 2025 13:01:17 +0000 Subject: [PATCH 006/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.241258 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 1af7fa4..61b91f6 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241238 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241258 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241238 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241258 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 612ca07..1ff91f8 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241238 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241258 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 06ba418..25d84b5 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241238 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241258 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From f4bd7e10cfc65e823dbb4398c4f41309429779d2 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 24 Jan 2025 13:27:52 +0000 Subject: [PATCH 007/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.241324 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 61b91f6..9c45c2b 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241258 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241324 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241258 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241324 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 1ff91f8..f94213a 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241258 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241324 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 25d84b5..d03220c 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241258 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241324 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 78c16c546a733ab4ee016d51c51bc702311c6e59 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 24 Jan 2025 15:20:55 +0000 Subject: [PATCH 008/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.241516 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 9c45c2b..6624190 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241324 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241516 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241324 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241516 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index f94213a..c35439a 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241324 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241516 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index d03220c..06519de 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241324 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241516 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 45ee1a6f37f7c4bbdc09b008bc970aebb5f9b3f9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 24 Jan 2025 15:47:28 +0000 Subject: [PATCH 009/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.241542 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 6624190..0f33d7d 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241516 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241542 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241516 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241542 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index c35439a..962e9a9 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241516 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241542 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 06519de..0e1e3fc 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241516 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241542 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 7aec4a6ae7601bda7ccce6ade508bc08e5c0c540 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 24 Jan 2025 16:40:12 +0000 Subject: [PATCH 010/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.241635 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 0f33d7d..d603e4e 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241542 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241635 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241542 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241635 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 962e9a9..82241ac 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241542 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241635 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 0e1e3fc..22854fa 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241542 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241635 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 21d8c030fd50e123f675ce3795832fcba0c9aeb4 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 24 Jan 2025 20:01:43 +0000 Subject: [PATCH 011/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.241927 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index d603e4e..a9ef833 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241635 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241927 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241635 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241927 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 82241ac..dbed03b 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241635 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241927 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 22854fa..a224e69 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241635 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241927 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 7a03c621c0fdeb7c692ba3000b7efb9e4eb50fc0 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 25 Jan 2025 00:25:43 +0000 Subject: [PATCH 012/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.250021 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index a9ef833..d776481 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241927 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.250021 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241927 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.250021 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index dbed03b..3413d46 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241927 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.250021 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index a224e69..528ddfb 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.241927 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.250021 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From aab5c12c26b6532db16c9d3bed7d655f4ba0fd14 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 25 Jan 2025 12:01:34 +0000 Subject: [PATCH 013/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.251158 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index d776481..f5d4a2e 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.250021 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251158 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.250021 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251158 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 3413d46..736ef55 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.250021 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251158 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 528ddfb..3766f7c 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.250021 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251158 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 98fc9a9bec75afc92f1af31dde315dc6b4564b02 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 25 Jan 2025 12:24:35 +0000 Subject: [PATCH 014/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.251218 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index f5d4a2e..35d0058 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251158 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251218 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251158 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251218 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 736ef55..ba030aa 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251158 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251218 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 3766f7c..c3a385d 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251158 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251218 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 0275a9f2355adbf0df68f8d8d64ed8d1037527dd Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 25 Jan 2025 13:01:20 +0000 Subject: [PATCH 015/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.251253 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 35d0058..1209ca6 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251218 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251253 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251218 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251253 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index ba030aa..1eb4069 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251218 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251253 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index c3a385d..6fc5362 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251218 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251253 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 968dd13d38d3795fe79271427a138e2094bab303 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 25 Jan 2025 15:01:32 +0000 Subject: [PATCH 016/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.251401 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 1209ca6..9342463 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251253 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251401 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251253 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251401 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 1eb4069..e90a714 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251253 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251401 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 6fc5362..bcbc41f 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251253 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251401 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 7330e77b085755ecc988728695df4d5e487c3472 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 25 Jan 2025 20:59:34 +0000 Subject: [PATCH 017/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.252003 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 9342463..3dc43e9 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251401 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252003 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251401 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252003 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index e90a714..77b6c70 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251401 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252003 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index bcbc41f..cf82b2b 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.251401 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252003 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 37ca11a72eb7354fe9bd1b6eec18d06560c10873 Mon Sep 17 00:00:00 2001 From: Merlin Jehli Date: Sun, 26 Jan 2025 00:03:05 +0100 Subject: [PATCH 018/145] added config --- default.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 default.json diff --git a/default.json b/default.json new file mode 100644 index 0000000..3654dba --- /dev/null +++ b/default.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "local>FML128/renovate-config" + ], + "customManagers": [ + { + "description": "idkyet updater", + "customType": "regex", + "fileMatch": [ + "^.+\\.ya?ml$" + ], + "matchStrings": [ + "previous_layer: (?[^:]+):(?[^\\s]+)" + ], + "datasourceTemplate": "gitea-tags", + "versioningTemplate": "loose" + } + ] +} From 46bec85fc534370a28651455fccd716c47010921 Mon Sep 17 00:00:00 2001 From: Merlin Jehli Date: Sun, 26 Jan 2025 00:14:16 +0100 Subject: [PATCH 019/145] added config --- default.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.json b/default.json index 3654dba..8ec71b2 100644 --- a/default.json +++ b/default.json @@ -13,8 +13,8 @@ "matchStrings": [ "previous_layer: (?[^:]+):(?[^\\s]+)" ], - "datasourceTemplate": "gitea-tags", - "versioningTemplate": "loose" + "datasourceTemplate": "docker", + "versioningTemplate": "docker" } ] } From 0ba478d5795285ef67df11caa2176ab19a9ccc8e Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 25 Jan 2025 23:33:27 +0000 Subject: [PATCH 020/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.252329 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 3dc43e9..165be07 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252003 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252329 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252003 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252329 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 77b6c70..cc05622 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252003 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252329 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index cf82b2b..a6ed95d 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252003 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252329 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 6b3698c1311280adbb7d6c8cbda9dd4dd2bc8015 Mon Sep 17 00:00:00 2001 From: FML128 Date: Sun, 26 Jan 2025 10:45:44 +0100 Subject: [PATCH 021/145] Update default.json --- default.json | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/default.json b/default.json index 8ec71b2..f56b6d2 100644 --- a/default.json +++ b/default.json @@ -1,20 +1,19 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "local>FML128/renovate-config" - ], - "customManagers": [ - { - "description": "idkyet updater", - "customType": "regex", - "fileMatch": [ - "^.+\\.ya?ml$" - ], - "matchStrings": [ - "previous_layer: (?[^:]+):(?[^\\s]+)" - ], - "datasourceTemplate": "docker", - "versioningTemplate": "docker" - } - ] -} + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "local>FML128/renovate-config" + ], + "customManagers": [ + { + "description": "idkyet updater", + "customType": "regex", + "fileMatch": [ + "^.+\\.ya?ml$" + ], + "matchStrings": [ + "previous_layer: (?[^:]+):(?[^\\s]+)" + ], + "datasourceTemplate": "docker" + } + ] +} \ No newline at end of file From ba10ccf2276fac415679d6065efc71335624016f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 26 Jan 2025 12:03:45 +0000 Subject: [PATCH 022/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.261159 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 165be07..6f9e204 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252329 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261159 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252329 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261159 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index cc05622..8829e1a 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252329 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261159 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index a6ed95d..d46513f 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.252329 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261159 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 7f69d8aedc57168b25c4b0577d03964345e2641d Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 26 Jan 2025 12:14:04 +0000 Subject: [PATCH 023/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.261209 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 6f9e204..ce29402 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261159 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261209 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261159 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261209 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 8829e1a..9e97f87 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261159 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261209 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index d46513f..f25235e 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261159 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261209 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From ac1ea7b52bf39a5713446b64af725d40dde99046 Mon Sep 17 00:00:00 2001 From: FML128 Date: Sun, 26 Jan 2025 13:57:30 +0100 Subject: [PATCH 024/145] Update builder/action.yml --- builder/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/action.yml b/builder/action.yml index 9e97f87..9ba4cfa 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261209 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261252 with: args: build ${{ inputs.layer_config_file }} env: From 453d074d2ba1b08a22b0178c417a9bdc5bd5a118 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 26 Jan 2025 13:01:31 +0000 Subject: [PATCH 025/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.261252 --- aur/action.yml | 4 ++-- validate/action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index ce29402..384706b 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261209 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261252 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261209 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261252 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/validate/action.yml b/validate/action.yml index f25235e..b6a05b7 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261209 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261252 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 8176b718b9394cf2e7893d5f1308a734524d2b90 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 26 Jan 2025 13:10:08 +0000 Subject: [PATCH 026/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.261301 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 384706b..c1c6393 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261252 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261301 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261252 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261301 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 9ba4cfa..a0e357b 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261252 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261301 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index b6a05b7..670d3c9 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261252 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261301 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 496f329891e5093d44d69fb69143fa5692835de9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 26 Jan 2025 14:01:15 +0000 Subject: [PATCH 027/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.261319 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index c1c6393..2b60b4e 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261301 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261319 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261301 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261319 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index a0e357b..fa79523 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261301 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261319 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 670d3c9..bdda185 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261301 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261319 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From d49b2df4f1ff38baabeb427a16168f2c2142d02b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 28 Jan 2025 11:02:06 +0000 Subject: [PATCH 028/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.281046 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 2b60b4e..37c3402 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261319 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281046 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261319 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281046 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index fa79523..5dfd0e4 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261319 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281046 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index bdda185..3fe0723 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.261319 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281046 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 50fa081d183d419e351d4a86ea44bac097db85c2 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 28 Jan 2025 19:02:02 +0000 Subject: [PATCH 029/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.281803 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 37c3402..437a905 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281046 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281803 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281046 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281803 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 5dfd0e4..9dd9b20 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281046 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281803 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 3fe0723..8fd1512 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281046 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281803 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 758beebbabb9b7c9433d036f55eb2a025fe34bcb Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 28 Jan 2025 19:50:05 +0000 Subject: [PATCH 030/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.281945 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 437a905..5275891 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281803 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281945 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281803 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281945 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 9dd9b20..ee65527 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281803 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281945 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 8fd1512..d091129 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281803 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281945 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 412a70f5373a5fe0f17ae8ee17ba8c7dfe4d71f8 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 28 Jan 2025 20:09:13 +0000 Subject: [PATCH 031/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.282004 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 5275891..b16dc4d 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281945 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282004 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281945 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282004 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index ee65527..e4e22ce 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281945 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282004 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index d091129..5133966 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.281945 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282004 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 7f2047cac40f3de1d9cc74f5dad8012faeb69635 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 28 Jan 2025 21:26:46 +0000 Subject: [PATCH 032/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.282122 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index b16dc4d..f182962 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282004 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282122 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282004 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282122 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index e4e22ce..ed471a5 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282004 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282122 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 5133966..fd39996 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282004 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282122 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 5d2c43151ce31158af78b68f9787b21be88dc10b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 28 Jan 2025 22:02:03 +0000 Subject: [PATCH 033/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.282156 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index f182962..77bdaf2 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282122 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282156 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282122 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282156 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index ed471a5..7d5612a 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282122 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282156 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index fd39996..9453354 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282122 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282156 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From be9a7ef3ed323b1e7d1cf7f027378d0545a3604d Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 29 Jan 2025 11:35:11 +0000 Subject: [PATCH 034/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.291130 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 77bdaf2..e8cf136 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282156 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291130 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282156 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291130 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 7d5612a..896ebaf 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282156 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291130 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 9453354..c0e61ea 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.282156 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291130 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 96d703fd7ae7e83e379e47ba199b84b7a886f6ab Mon Sep 17 00:00:00 2001 From: Merlin Jehli Date: Wed, 29 Jan 2025 15:56:24 +0100 Subject: [PATCH 035/145] added config --- builder/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/builder/action.yml b/builder/action.yml index 896ebaf..742d45c 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -25,6 +25,9 @@ inputs: api_auth_token: description: 'api_auth_token if needed to download base images' required: false + gpg_sign_key: + description: 'gpg key to sign images' + required: false #outputs: # hashes: @@ -44,3 +47,4 @@ runs: INPUT_SB_DB_KEY: ${{ inputs.sb_db_key }} INPUT_SB_DB_PEM: ${{ inputs.sb_db_pem }} INPUT_API_AUTH_TOKEN: ${{ inputs.api_auth_token }} + GPG_SIGN_KEY: ${{ secrets.gpg_sign_key }} From da9cccb70e8939c73b08ae75cf437eeb243651af Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 29 Jan 2025 14:59:16 +0000 Subject: [PATCH 036/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.291454 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index e8cf136..dfaeefa 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291130 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291454 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291130 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291454 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 742d45c..086847a 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291130 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291454 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index c0e61ea..60e555e 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291130 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291454 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From aa78c991d3a5097d6417230271ff92b75e4ddeeb Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 29 Jan 2025 15:42:49 +0000 Subject: [PATCH 037/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.291530 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index dfaeefa..6c4b4cd 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291454 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291530 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291454 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291530 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 086847a..e8db5a9 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291454 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291530 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 60e555e..daaed9f 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291454 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291530 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From eae860f412dcd79878ab0a2c8352d6dcba836709 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 29 Jan 2025 19:29:20 +0000 Subject: [PATCH 038/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.291924 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 6c4b4cd..f1b2ceb 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291530 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291924 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291530 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291924 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index e8db5a9..9aa7208 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291530 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291924 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index daaed9f..788c2f9 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291530 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291924 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 49baa9469cbbd469e8667de361d2bd639a148d89 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 29 Jan 2025 21:02:12 +0000 Subject: [PATCH 039/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.292038 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index f1b2ceb..f029fb9 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291924 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.292038 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291924 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.292038 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 9aa7208..44484a0 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291924 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.292038 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 788c2f9..8637422 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.291924 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.292038 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From c02939989e997ff015bfc95f15cb929b246b6b9a Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 30 Jan 2025 10:50:14 +0000 Subject: [PATCH 040/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.301027 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index f029fb9..8b7d146 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.292038 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301027 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.292038 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301027 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 44484a0..02e0d9a 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.292038 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301027 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 8637422..603b75b 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.292038 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301027 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From fd1301ce2b91ca7a8be385714d346619023f9c37 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 30 Jan 2025 11:24:24 +0000 Subject: [PATCH 041/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.301118 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 8b7d146..207f24b 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301027 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301118 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301027 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301118 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 02e0d9a..e010412 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301027 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301118 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 603b75b..54e8f50 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301027 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301118 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 3d5604ef2fa7cfb129375957e3e1aad7dee526ab Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 30 Jan 2025 13:01:40 +0000 Subject: [PATCH 042/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.301159 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 207f24b..cb4f236 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301118 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301159 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301118 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301159 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index e010412..a8098a4 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301118 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301159 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 54e8f50..9a3ad97 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301118 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301159 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 8e45eb379c1d42dd35a6a01716e89ff36df53585 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 30 Jan 2025 18:01:35 +0000 Subject: [PATCH 043/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.301717 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index cb4f236..928d5b8 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301159 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301717 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301159 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301717 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index a8098a4..92c6e00 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301159 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301717 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 9a3ad97..665adbb 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301159 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301717 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 88a6712918e03df96730651006f1f8fc09681756 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 31 Jan 2025 02:01:35 +0000 Subject: [PATCH 044/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.310100 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 928d5b8..972585a 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301717 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.310100 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301717 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.310100 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 92c6e00..739dc52 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301717 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.310100 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 665adbb..b3b9305 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.301717 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.310100 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 5254835ac38ca01df5bd56031e6bcff752fb0ff8 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 31 Jan 2025 14:46:09 +0000 Subject: [PATCH 045/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.01.311429 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 972585a..86ed8ce 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.310100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.311429 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.310100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.311429 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 739dc52..86e7670 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.310100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.311429 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index b3b9305..4245e76 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.310100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.311429 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 72b5c6bf19d64fe75dd8481910aa95473cc3cb70 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 1 Feb 2025 11:01:35 +0000 Subject: [PATCH 046/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.011058 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 86ed8ce..a489933 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.311429 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.011058 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.311429 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.011058 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 86e7670..6454d01 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.311429 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.011058 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 4245e76..307b847 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.01.311429 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.011058 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From bda8634164caa6ac02db828e6d45ab49b63a3350 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 2 Feb 2025 11:28:21 +0000 Subject: [PATCH 047/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.021123 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index a489933..3728d0d 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.011058 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021123 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.011058 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021123 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 6454d01..f672ccd 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.011058 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021123 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 307b847..0e541d7 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.011058 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021123 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 0923460acb1c2084ff17703bcdeb3bcf679a84f1 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 2 Feb 2025 20:01:30 +0000 Subject: [PATCH 048/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.021903 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 3728d0d..80bccf3 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021123 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021903 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021123 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021903 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index f672ccd..8c4112f 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021123 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021903 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 0e541d7..986173b 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021123 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021903 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 4e1766dae80f681b36b2a499495098388cdfa6ec Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 3 Feb 2025 02:01:41 +0000 Subject: [PATCH 049/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.030100 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 80bccf3..c690162 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021903 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.030100 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021903 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.030100 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 8c4112f..04a73b0 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021903 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.030100 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 986173b..bffacb5 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.021903 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.030100 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 0f13928c5fe0633519ec56ab6349787b3d9b68a1 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 3 Feb 2025 15:55:56 +0000 Subject: [PATCH 050/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.031543 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index c690162..5718821 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.030100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.031543 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.030100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.031543 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 04a73b0..5c65957 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.030100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.031543 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index bffacb5..8cbed3c 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.030100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.031543 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 9425ddf18f1ed32842bd1c33318106995eb09b9a Mon Sep 17 00:00:00 2001 From: FML128 Date: Tue, 4 Feb 2025 09:52:55 +0100 Subject: [PATCH 051/145] Update builder/action.yml --- builder/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/action.yml b/builder/action.yml index 5c65957..697f50b 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -47,4 +47,4 @@ runs: INPUT_SB_DB_KEY: ${{ inputs.sb_db_key }} INPUT_SB_DB_PEM: ${{ inputs.sb_db_pem }} INPUT_API_AUTH_TOKEN: ${{ inputs.api_auth_token }} - GPG_SIGN_KEY: ${{ secrets.gpg_sign_key }} + GPG_SIGN_KEY: ${{ inputs.gpg_sign_key }} From 8ab45c11790a5d68399b02b59a9e315ff8e7b8bd Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 5 Feb 2025 11:48:31 +0000 Subject: [PATCH 052/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.051143 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 5718821..cff0f28 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.031543 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051143 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.031543 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051143 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 697f50b..6deae39 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.031543 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051143 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 8cbed3c..d6f43ff 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.031543 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051143 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 8164295323b7c02acc32335f1bbc1f686bb2227c Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 5 Feb 2025 13:01:45 +0000 Subject: [PATCH 053/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.051256 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index cff0f28..c5437be 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051143 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051256 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051143 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051256 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 6deae39..63e5930 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051143 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051256 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index d6f43ff..b766230 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051143 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051256 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From fc41d6e94a200e7b10760954499a5f4b4313eda5 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 6 Feb 2025 17:01:29 +0000 Subject: [PATCH 054/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.061653 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index c5437be..df418df 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051256 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061653 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051256 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061653 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 63e5930..5c8bf9f 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051256 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061653 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index b766230..c5bab4a 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.051256 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061653 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 62b4ff9f02e6f04bb1401cc426408f8eb5e8517c Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 6 Feb 2025 20:01:34 +0000 Subject: [PATCH 055/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.061902 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index df418df..7009f28 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061653 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061902 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061653 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061902 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 5c8bf9f..3ce0d00 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061653 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061902 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index c5bab4a..03a2f0c 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061653 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061902 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 44f2411562c6de05972b818655b7eeeb5ffbe051 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 7 Feb 2025 02:01:34 +0000 Subject: [PATCH 056/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.070102 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 7009f28..e7404f6 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061902 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.070102 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061902 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.070102 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 3ce0d00..90c33ec 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061902 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.070102 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 03a2f0c..a6d6cfa 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.061902 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.070102 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From e3d0509b90502f145b75a250c1b2322b856c1f04 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 7 Feb 2025 17:07:47 +0000 Subject: [PATCH 057/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.071702 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index e7404f6..3be2c12 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.070102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071702 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.070102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071702 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 90c33ec..8e4b392 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.070102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071702 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index a6d6cfa..1f88306 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.070102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071702 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From df0d7d440914e0c321edaf555c570d5f0775d656 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 7 Feb 2025 17:33:38 +0000 Subject: [PATCH 058/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.071728 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 3be2c12..f58b0f3 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071728 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071728 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 8e4b392..054870c 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071728 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 1f88306..ed39362 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071728 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 3c0f2d8babd3598566ad580bf79692b190b353e7 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 7 Feb 2025 18:00:34 +0000 Subject: [PATCH 059/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.071754 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index f58b0f3..96cfba8 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071728 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071754 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071728 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071754 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 054870c..5e777de 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071728 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071754 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index ed39362..945bbb9 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071728 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071754 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 18a00b45e158524813d490e3dd47c95a7a055345 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 7 Feb 2025 21:20:00 +0000 Subject: [PATCH 060/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.072111 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 96cfba8..cd9eb7a 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071754 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072111 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071754 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072111 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 5e777de..2ddaec5 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071754 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072111 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 945bbb9..5a87b6e 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.071754 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072111 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 3f1995a1b48fb5211690b32accbf387f91150426 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 7 Feb 2025 22:02:02 +0000 Subject: [PATCH 061/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.072157 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index cd9eb7a..4e9194c 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072111 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072157 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072111 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072157 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 2ddaec5..30ce3e6 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072111 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072157 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 5a87b6e..2de630b 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072111 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072157 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 5a01afaa39f29fc65599748ab539e6e895d6228b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 9 Feb 2025 11:01:19 +0000 Subject: [PATCH 062/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.091002 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 4e9194c..2659d26 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072157 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.091002 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072157 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.091002 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 30ce3e6..a68e607 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072157 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.091002 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 2de630b..0dedcb5 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.072157 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.091002 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From a298df1e1dec6a147a1c10905b6a2734dac33244 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 10 Feb 2025 02:01:23 +0000 Subject: [PATCH 063/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.100102 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 2659d26..013e2db 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.091002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.100102 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.091002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.100102 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index a68e607..f5055a2 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.091002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.100102 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 0dedcb5..631236e 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.091002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.100102 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 0788274998900a4fc26a01f2b2becc7b1f1465e6 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 10 Feb 2025 19:02:07 +0000 Subject: [PATCH 064/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.101802 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 013e2db..fcf62da 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.100102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.101802 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.100102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.101802 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index f5055a2..4c691da 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.100102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.101802 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 631236e..91e83b2 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.100102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.101802 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From d6a109a87cbeaa57377307f82a451cb872fa9023 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 13 Feb 2025 00:14:22 +0000 Subject: [PATCH 065/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.130002 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index fcf62da..e3d6fae 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.101802 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.130002 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.101802 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.130002 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 4c691da..244fa65 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.101802 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.130002 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 91e83b2..8fcc5d1 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.101802 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.130002 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 314c7385225309ee5977c8e71b400a87aeb05d91 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 14 Feb 2025 02:02:05 +0000 Subject: [PATCH 066/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.140100 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index e3d6fae..b73aeb5 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.130002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.140100 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.130002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.140100 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 244fa65..bcbee46 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.130002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.140100 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 8fcc5d1..9b6d703 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.130002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.140100 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 2dee076b42bf2baaf0606bf44b916bec8fc21b77 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 15 Feb 2025 17:02:03 +0000 Subject: [PATCH 067/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.151621 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index b73aeb5..5a2333a 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.140100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.151621 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.140100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.151621 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index bcbee46..85786e6 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.140100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.151621 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 9b6d703..6c4479f 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.140100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.151621 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 0ca8e2154bc1e2d16f818fe62242cc449efdd744 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 17 Feb 2025 02:01:48 +0000 Subject: [PATCH 068/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.170100 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 5a2333a..4d3f39f 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.151621 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.170100 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.151621 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.170100 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 85786e6..b335b43 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.151621 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.170100 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 6c4479f..86854d4 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.151621 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.170100 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 5aee0aee0e6b17c908b800bdf811984e8ed4eff1 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 20 Feb 2025 04:01:48 +0000 Subject: [PATCH 069/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.200303 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 4d3f39f..35be196 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.170100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200303 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.170100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200303 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index b335b43..1c8b84c 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.170100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200303 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 86854d4..5aef8ed 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.170100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200303 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From b5406b4615d0d9c496478c35ddd6a3d21e0eab50 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 20 Feb 2025 07:01:51 +0000 Subject: [PATCH 070/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.200603 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 35be196..aaed08e 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200303 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200603 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200303 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200603 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 1c8b84c..350322d 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200303 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200603 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 5aef8ed..b150e69 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200303 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200603 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 6d16d932cfe7c57e6d5cb257eb793713857fac9b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 20 Feb 2025 20:01:47 +0000 Subject: [PATCH 071/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.201902 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index aaed08e..6ff14a6 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200603 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.201902 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200603 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.201902 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 350322d..ec643d0 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200603 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.201902 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index b150e69..a1eaac6 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.200603 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.201902 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From dc0ef77e7bcf963893026e2516d14e352c76cc0b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 21 Feb 2025 02:02:55 +0000 Subject: [PATCH 072/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.210100 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 6ff14a6..e980023 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.201902 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.210100 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.201902 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.210100 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index ec643d0..392ab31 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.201902 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.210100 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index a1eaac6..e28af3c 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.201902 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.210100 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 18f6384454d58146eed8f2a3514e484260b658da Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 24 Feb 2025 02:01:38 +0000 Subject: [PATCH 073/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.240100 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index e980023..1179453 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.210100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.240100 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.210100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.240100 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 392ab31..0b10ec0 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.210100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.240100 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index e28af3c..cea99a0 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.210100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.240100 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 3fa51b6efd27b8d21df07f6187a51530bfe1d98c Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 28 Feb 2025 02:02:03 +0000 Subject: [PATCH 074/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.280100 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 1179453..a69d6a8 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.240100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.280100 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.240100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.280100 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 0b10ec0..5882331 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.240100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.280100 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index cea99a0..661b965 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.240100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.280100 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 97e13faa320658ffd8d4fefe4dd85503777f3516 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 28 Feb 2025 23:35:50 +0000 Subject: [PATCH 075/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.282328 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index a69d6a8..5be5296 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.280100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282328 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.280100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282328 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 5882331..ef171f8 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.280100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282328 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 661b965..18e6944 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.280100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282328 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 88d3bab0f461890dcd31287e604321935ac04e49 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 1 Mar 2025 00:01:47 +0000 Subject: [PATCH 076/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.02.282334 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 5be5296..6248777 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282328 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282334 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282328 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282334 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index ef171f8..2e986b5 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282328 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282334 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 18e6944..316de82 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282328 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282334 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From bf03fb0ea0e12569bcd179d69c737785d5e8c6f8 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 1 Mar 2025 01:02:02 +0000 Subject: [PATCH 077/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.010002 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 6248777..db40143 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282334 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.010002 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282334 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.010002 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 2e986b5..e5104e4 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282334 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.010002 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 316de82..f7077ab 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.02.282334 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.010002 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From b7d4a5ac561cca78d2b05fda1afe443352cd2ee0 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 3 Mar 2025 11:02:20 +0000 Subject: [PATCH 078/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.031003 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index db40143..31772ca 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.010002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031003 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.010002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031003 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index e5104e4..f237e68 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.010002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031003 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index f7077ab..29136be 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.010002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031003 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From bd90af6e7fc32e70cf20c22dbb31ed309f81805e Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 3 Mar 2025 12:02:20 +0000 Subject: [PATCH 079/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.031103 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 31772ca..7817a57 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031003 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031103 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031003 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031103 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index f237e68..12081d9 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031003 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031103 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 29136be..10d3de3 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031003 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031103 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 586da0472fb5276f1d508c6a2ca1dbe00b0b724c Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 6 Mar 2025 14:02:19 +0000 Subject: [PATCH 080/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.061355 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 7817a57..1a87023 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031103 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.061355 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031103 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.061355 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 12081d9..7b91a0a 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031103 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.061355 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 10d3de3..bd98f70 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.031103 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.061355 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 7999f9c2661dd84ab21dff140966969e9ad2dfcf Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 10 Mar 2025 17:03:34 +0000 Subject: [PATCH 081/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.101655 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 1a87023..075caa6 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.061355 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.101655 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.061355 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.101655 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 7b91a0a..ba4e0c9 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.061355 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.101655 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index bd98f70..e76d879 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.061355 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.101655 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From ad569ecd472ae887348e5b47baa94bfda867b0c4 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 12 Mar 2025 16:28:33 +0000 Subject: [PATCH 082/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.121615 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 075caa6..9fe52c0 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.101655 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121615 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.101655 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121615 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index ba4e0c9..5cb6354 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.101655 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121615 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index e76d879..1a95283 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.101655 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121615 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From bd29624f891cf9707de3bb3ad3a98fa46f2ee186 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 12 Mar 2025 17:02:20 +0000 Subject: [PATCH 083/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.121628 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 9fe52c0..138dbe7 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121615 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121628 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121615 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121628 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 5cb6354..6f87bf4 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121615 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121628 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 1a95283..efe7977 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121615 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121628 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From a5e5f2512e066c7add1884c01cb9648a91be700e Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 14 Mar 2025 02:02:00 +0000 Subject: [PATCH 084/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.140102 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 138dbe7..f0f105b 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121628 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.140102 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121628 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.140102 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 6f87bf4..c3ae1fc 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121628 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.140102 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index efe7977..4baab36 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.121628 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.140102 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 418c30381eb0d424905c00c04ae40483ffb40d0e Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 16 Mar 2025 09:39:37 +0000 Subject: [PATCH 085/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.160929 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index f0f105b..113360c 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.140102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.160929 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.140102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.160929 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index c3ae1fc..1e65211 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.140102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.160929 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 4baab36..cdebff1 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.140102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.160929 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From a3a7ce88aae991cc85a41fb9af99e9a32f0a79bb Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 17 Mar 2025 01:01:24 +0000 Subject: [PATCH 086/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.170001 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 113360c..275cef8 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.160929 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170001 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.160929 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170001 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 1e65211..9add5fb 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.160929 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170001 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index cdebff1..9bcf969 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.160929 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170001 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 1ac34ef18bc6e851bff628fdcfee6b33f58ad71b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 17 Mar 2025 01:12:54 +0000 Subject: [PATCH 087/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.170101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 275cef8..2067ab4 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170001 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170001 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 9add5fb..10454b4 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170001 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 9bcf969..5c450a5 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170001 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 44919a18a1013963510c8d8a7183f844416d9da4 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 17 Mar 2025 14:13:18 +0000 Subject: [PATCH 088/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.171401 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 2067ab4..832f4f1 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.171401 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.171401 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 10454b4..f248d38 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.171401 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 5c450a5..69ad9f1 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.170101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.171401 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 6e9682cc6b39512dfada9c7b99ec1be5cb0cd535 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 18 Mar 2025 18:01:34 +0000 Subject: [PATCH 089/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.181702 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 832f4f1..8c5d35e 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.171401 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.181702 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.171401 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.181702 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index f248d38..63c10e6 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.171401 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.181702 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 69ad9f1..1b0b30f 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.171401 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.181702 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 88ac3c1ecfe764e52c7ac346f669ef31bd35f2de Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 21 Mar 2025 02:01:10 +0000 Subject: [PATCH 090/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.210101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 8c5d35e..b4720f9 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.181702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.210101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.181702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.210101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 63c10e6..7c1bc80 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.181702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.210101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 1b0b30f..a187d1b 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.181702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.210101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 3bf59e903b86b26c6eeadd675d346c3fa2a97f53 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 22 Mar 2025 12:01:32 +0000 Subject: [PATCH 091/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.221136 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index b4720f9..380c01a 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.210101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.221136 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.210101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.221136 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 7c1bc80..3929319 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.210101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.221136 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index a187d1b..988994f 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.210101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.221136 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 24f43456c56784ec01ea0b4a8b6189d9ed7c0f88 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 24 Mar 2025 02:01:37 +0000 Subject: [PATCH 092/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.240101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 380c01a..4a33df1 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.221136 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.240101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.221136 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.240101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 3929319..bf02818 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.221136 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.240101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 988994f..6c1fe69 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.221136 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.240101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From e5e459307d15223d4a7e3e006affdd05cbfb3627 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 28 Mar 2025 02:01:12 +0000 Subject: [PATCH 093/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.280101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 4a33df1..93c81fa 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.240101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.280101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.240101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.280101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index bf02818..8b899be 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.240101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.280101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 6c1fe69..e9e86cc 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.240101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.280101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 229098a44669af2192fc260c0908effe66a0e14c Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 29 Mar 2025 00:28:42 +0000 Subject: [PATCH 094/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.290025 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 93c81fa..fd4fc74 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.280101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290025 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.280101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290025 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 8b899be..f44e9f1 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.280101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290025 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index e9e86cc..87df642 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.280101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290025 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 30658e1d30eff88ebf44edb3f2b72e408d4e60e3 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 29 Mar 2025 02:01:21 +0000 Subject: [PATCH 095/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.03.290101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index fd4fc74..376d42d 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290025 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290025 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index f44e9f1..9aaa6b2 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290025 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 87df642..0fcadfc 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290025 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 640d359727569a0d779b43a19845eaeb884c6ddd Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 2 Apr 2025 09:11:02 +0000 Subject: [PATCH 096/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.020908 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 376d42d..50cdd53 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.020908 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.020908 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 9aaa6b2..55f9428 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.020908 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 0fcadfc..3b12f93 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.03.290101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.020908 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From dfc4b5b70e276c4c076904501910c55581efec65 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 3 Apr 2025 10:01:30 +0000 Subject: [PATCH 097/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.030913 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 50cdd53..1231103 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.020908 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.030913 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.020908 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.030913 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 55f9428..81897af 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.020908 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.030913 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 3b12f93..4199f69 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.020908 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.030913 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 06bc6f78b4f85bdc30eac99f84493224964cf32a Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 3 Apr 2025 11:01:24 +0000 Subject: [PATCH 098/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.031001 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 1231103..63e2c21 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.030913 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031001 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.030913 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031001 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 81897af..a2bcf6c 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.030913 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031001 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 4199f69..322cdea 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.030913 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031001 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 008514150016d978d120e296f699a177e94a38b8 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 3 Apr 2025 20:01:25 +0000 Subject: [PATCH 099/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.031918 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 63e2c21..dab0260 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031001 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031918 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031001 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031918 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index a2bcf6c..2c905d5 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031001 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031918 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 322cdea..57722e3 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031001 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031918 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 23466ec1847c41611058405de209eb155009f6fc Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 4 Apr 2025 02:01:29 +0000 Subject: [PATCH 100/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.040105 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index dab0260..b14cbfb 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031918 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.040105 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031918 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.040105 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 2c905d5..aa0df07 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031918 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.040105 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 57722e3..0ab4238 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.031918 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.040105 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 42990c6f61aa80efd33cfd06013a250e1bd59197 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 4 Apr 2025 14:01:03 +0000 Subject: [PATCH 101/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.041301 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index b14cbfb..f5c5474 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.040105 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.041301 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.040105 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.041301 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index aa0df07..e9cda82 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.040105 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.041301 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 0ab4238..2388974 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.040105 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.041301 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From ecaf78e0349f7d615511d07e236114023f262163 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 7 Apr 2025 13:01:11 +0000 Subject: [PATCH 102/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.071252 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index f5c5474..edc88fa 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.041301 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.071252 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.041301 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.071252 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index e9cda82..ed51fbb 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.041301 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.071252 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 2388974..e1c69fb 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.041301 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.071252 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 004efceafed9d4c09d7efcec5a51bb18672d32dd Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 11 Apr 2025 02:01:47 +0000 Subject: [PATCH 103/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.110102 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index edc88fa..ff974bd 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.071252 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.110102 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.071252 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.110102 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index ed51fbb..f8ace71 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.071252 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.110102 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index e1c69fb..643a57b 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.071252 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.110102 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From c67307374a0d59bbb3d5e51bb010d71e2a84fb20 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 14 Apr 2025 02:01:55 +0000 Subject: [PATCH 104/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.140102 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index ff974bd..375024a 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.110102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.140102 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.110102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.140102 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index f8ace71..cd231c4 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.110102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.140102 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 643a57b..22179b6 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.110102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.140102 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 5e981738e1ee283f861726c9e3dde28aeca51a99 Mon Sep 17 00:00:00 2001 From: Merlin Jehli Date: Fri, 18 Apr 2025 01:07:53 +0200 Subject: [PATCH 105/145] added config --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 375024a..098be08 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.140102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172236 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.140102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172236 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index cd231c4..309ff9a 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.140102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172236 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 22179b6..e6f11db 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.140102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172236 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From e9f032117e1124bab8e8bc3d45fbceeade233765 Mon Sep 17 00:00:00 2001 From: Merlin Jehli Date: Fri, 18 Apr 2025 01:27:23 +0200 Subject: [PATCH 106/145] added config --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 098be08..6d1ae1b 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172236 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172318 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172236 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172318 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 309ff9a..9305ff7 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172236 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172318 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index e6f11db..494e32c 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172236 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172318 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 6c5bcc167bcbeae3915532418442948dd8d5d55d Mon Sep 17 00:00:00 2001 From: Merlin Jehli Date: Fri, 18 Apr 2025 09:37:59 +0200 Subject: [PATCH 107/145] added config --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 6d1ae1b..cf2955d 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172318 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180727 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172318 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180727 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 9305ff7..d5acd7a 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172318 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180727 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 494e32c..df0a782 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.172318 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180727 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 9d3bca8193296e45051698f2576cb382e7cfbf80 Mon Sep 17 00:00:00 2001 From: Merlin Jehli Date: Fri, 18 Apr 2025 10:10:22 +0200 Subject: [PATCH 108/145] added config --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index cf2955d..89bfe38 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180727 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180806 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180727 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180806 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index d5acd7a..a9496be 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180727 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180806 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index df0a782..9df251e 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180727 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180806 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From a56a3d168db8308d6b6141ebb2558bff8344507d Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 21 Apr 2025 02:01:46 +0000 Subject: [PATCH 109/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.210100 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 89bfe38..81d9bdb 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180806 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.210100 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180806 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.210100 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index a9496be..c0fd1b8 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180806 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.210100 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 9df251e..480ca9b 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.180806 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.210100 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From af5846d522753a3155c732db997e1e00486912dc Mon Sep 17 00:00:00 2001 From: Merlin Jehli Date: Mon, 21 Apr 2025 16:56:07 +0200 Subject: [PATCH 110/145] added config --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 81d9bdb..fd54571 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.210100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211448 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.210100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211448 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index c0fd1b8..8015766 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.210100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211448 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 480ca9b..3adeaf6 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.210100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211448 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From b5667edf0fdb57f77d7cb587af8eae5cd2fa4a34 Mon Sep 17 00:00:00 2001 From: Merlin Jehli Date: Mon, 21 Apr 2025 21:59:30 +0200 Subject: [PATCH 111/145] added config --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index fd54571..3d32ca5 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211448 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211956 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211448 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211956 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 8015766..bd6067d 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211448 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211956 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 3adeaf6..dbd8748 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211448 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211956 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From f231332f6dec4f675514e55ad4aaf65f1c0b35aa Mon Sep 17 00:00:00 2001 From: Merlin Jehli Date: Mon, 21 Apr 2025 23:18:51 +0200 Subject: [PATCH 112/145] added config --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 3d32ca5..9fbdcd4 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211956 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.212116 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211956 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.212116 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index bd6067d..9d5d724 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211956 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.212116 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index dbd8748..3911309 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.211956 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.212116 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 8f99be78ae2f16c33a306fc501b510b846ec018a Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 22 Apr 2025 11:00:52 +0000 Subject: [PATCH 113/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.221052 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 9fbdcd4..e334fa1 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.212116 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221052 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.212116 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221052 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 9d5d724..36d50bf 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.212116 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221052 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 3911309..2cb1dbf 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.212116 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221052 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 850fca454edd6ebbc8e235be18b177e1759ebba9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 22 Apr 2025 11:54:06 +0000 Subject: [PATCH 114/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.221140 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index e334fa1..d7a174d 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221052 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221140 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221052 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221140 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 36d50bf..0f40122 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221052 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221140 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 2cb1dbf..d5fa33b 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221052 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221140 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From d39cd4014df768b75471368cf75fdb3cc3520c94 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 22 Apr 2025 14:01:17 +0000 Subject: [PATCH 115/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.221355 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index d7a174d..1cce7da 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221140 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221355 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221140 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221355 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 0f40122..3a9c53e 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221140 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221355 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index d5fa33b..70e75bf 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221140 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221355 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 1a978f44ded03f820df8da029e43ab9e0b225479 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 22 Apr 2025 14:40:23 +0000 Subject: [PATCH 116/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.221437 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 1cce7da..21fffc6 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221355 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221437 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221355 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221437 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 3a9c53e..8046ad2 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221355 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221437 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 70e75bf..1984028 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221355 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221437 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From ecf13c7987e91002006e4943af01ff1584926a69 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 22 Apr 2025 15:02:57 +0000 Subject: [PATCH 117/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.221459 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 21fffc6..d0b7626 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221437 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221459 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221437 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221459 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 8046ad2..47f737d 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221437 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221459 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 1984028..c07d545 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221437 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221459 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From d5d70724d11115c511dc9dbe45c0d1b15ccc35cc Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 22 Apr 2025 18:13:17 +0000 Subject: [PATCH 118/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.221809 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index d0b7626..9c2ea34 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221459 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221809 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221459 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221809 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 47f737d..03386fd 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221459 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221809 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index c07d545..dd0e3f1 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221459 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221809 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From fd14efec49bf5271ffa1cc7b37226876e45d3076 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 22 Apr 2025 18:48:51 +0000 Subject: [PATCH 119/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.221842 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 9c2ea34..ecb5dab 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221809 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221842 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221809 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221842 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 03386fd..c7dda00 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221809 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221842 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index dd0e3f1..145bf15 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221809 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221842 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From e0b695262f1fa651641538a48a419e66bfb8a8db Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 22 Apr 2025 19:33:56 +0000 Subject: [PATCH 120/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.221926 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index ecb5dab..eccafec 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221842 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221926 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221842 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221926 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index c7dda00..e5cae4c 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221842 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221926 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 145bf15..9196bd8 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221842 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221926 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 9e07e22b0a0ee1b23de45b679c41dd447344b509 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 27 Apr 2025 13:15:42 +0000 Subject: [PATCH 121/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.271309 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index eccafec..8567658 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221926 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271309 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221926 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271309 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index e5cae4c..d769868 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221926 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271309 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 9196bd8..e979dc0 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.221926 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271309 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 7560cb615fbd634a42e0bd512894fc241617921f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 27 Apr 2025 15:23:48 +0000 Subject: [PATCH 122/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.271516 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 8567658..418b9fb 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271309 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271516 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271309 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271516 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index d769868..26627bc 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271309 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271516 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index e979dc0..f587984 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271309 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271516 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From e5c645fcddd85dd53e6a932a508eac49d3d2fb74 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 27 Apr 2025 17:01:31 +0000 Subject: [PATCH 123/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.271557 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 418b9fb..2a1d5b7 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271516 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271557 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271516 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271557 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 26627bc..6cb77c0 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271516 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271557 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index f587984..206867f 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271516 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271557 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From b93d68574bd19a6fe21cc879190b59f7872117e4 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 27 Apr 2025 22:01:22 +0000 Subject: [PATCH 124/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.272154 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 2a1d5b7..eb5521d 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271557 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272154 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271557 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272154 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 6cb77c0..171f208 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271557 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272154 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 206867f..6568af0 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.271557 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272154 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From ed92a55816fa58f5959bbb3c1b35d6504d4b1370 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 27 Apr 2025 22:43:48 +0000 Subject: [PATCH 125/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.272236 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index eb5521d..021baad 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272154 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272236 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272154 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272236 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 171f208..4d91e5c 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272154 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272236 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 6568af0..926917d 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272154 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272236 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 4b507fb36f10084681f0c3e8a98e9b05d73e7b11 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 27 Apr 2025 23:18:55 +0000 Subject: [PATCH 126/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.272311 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 021baad..76e42c8 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272236 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272311 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272236 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272311 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 4d91e5c..e4530d9 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272236 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272311 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 926917d..b521eb9 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272236 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272311 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 20b3e4a5a059b72a0ef99bd73fcb81b91acac4d9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 28 Apr 2025 07:07:14 +0000 Subject: [PATCH 127/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.280100 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 76e42c8..bfce5f6 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272311 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280100 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272311 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280100 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index e4530d9..a29293c 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272311 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280100 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index b521eb9..317f6b0 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.272311 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280100 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From d434d371987d01a11719a36521c1dc86b4d3c0f4 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 28 Apr 2025 08:01:48 +0000 Subject: [PATCH 128/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.280753 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index bfce5f6..1901734 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280753 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280753 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index a29293c..1d67f62 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280753 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 317f6b0..abdc7c2 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280100 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280753 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From a867919b407d24dcf209e543042e7bb7c3008dc4 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 28 Apr 2025 08:16:01 +0000 Subject: [PATCH 129/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.280811 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 1901734..a0c69c2 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280753 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280811 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280753 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280811 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 1d67f62..6078b7c 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280753 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280811 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index abdc7c2..96ff97b 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280753 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280811 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From eb14f990939abb13370c0ac63fad5099a9b03113 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 30 Apr 2025 13:10:39 +0000 Subject: [PATCH 130/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.301302 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index a0c69c2..6d84896 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280811 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301302 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280811 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301302 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 6078b7c..fbccb03 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280811 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301302 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 96ff97b..d8b211f 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.280811 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301302 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From d3de9870138087e940e759550e0a3ecca4c607c5 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 30 Apr 2025 14:02:49 +0000 Subject: [PATCH 131/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.04.301341 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 6d84896..0d3a05f 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301302 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301341 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301302 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301341 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index fbccb03..1949e2c 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301302 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301341 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index d8b211f..c6dc172 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301302 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301341 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 2e7b272e598f41633fff4846a3214646f93438c9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 2 May 2025 03:01:00 +0000 Subject: [PATCH 132/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.020101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 0d3a05f..a17d7c6 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301341 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.020101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301341 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.020101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 1949e2c..a04fe63 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301341 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.020101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index c6dc172..8924d69 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.04.301341 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.020101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 03fe60dc4f91a9e1404f6d2ad536a3aa03881439 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 5 May 2025 03:01:32 +0000 Subject: [PATCH 133/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.050102 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index a17d7c6..369c26a 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.020101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.050102 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.020101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.050102 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index a04fe63..54c27cd 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.020101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.050102 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 8924d69..fdeccfe 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.020101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.050102 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 5cc9e25a696c46defdc6dfaecebb603ef1e61bbe Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 9 May 2025 02:01:04 +0000 Subject: [PATCH 134/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.090101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 369c26a..73ee225 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.050102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.090101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.050102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.090101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 54c27cd..acb6679 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.050102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.090101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index fdeccfe..b3986aa 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.050102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.090101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 01d7f507244dfdbc0440ebd3e2fadc53d9173c3a Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 16 May 2025 01:20:10 +0000 Subject: [PATCH 135/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.160101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 73ee225..f9bf357 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.090101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.160101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.090101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.160101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index acb6679..3f57eeb 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.090101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.160101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index b3986aa..6602dac 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.090101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.160101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 219b540ea8a36c36d08d727c29dd2117b1516ba1 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 19 May 2025 02:02:37 +0000 Subject: [PATCH 136/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.190101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index f9bf357..a938ac1 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.160101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.190101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.160101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.190101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 3f57eeb..65a30ba 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.160101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.190101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 6602dac..12b9c13 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.160101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.190101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 5ae22fefe4931725a21711e821f7cafb359ace8a Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 23 May 2025 02:01:27 +0000 Subject: [PATCH 137/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.230101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index a938ac1..e58abb4 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.190101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.230101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.190101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.230101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 65a30ba..a12d848 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.190101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.230101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 12b9c13..0b2597e 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.190101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.230101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 088f8e8d08d1aa05db8ee38e2c3aaa045ff3f3b5 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 26 May 2025 02:02:37 +0000 Subject: [PATCH 138/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.260101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index e58abb4..95a9925 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.230101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.260101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.230101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.260101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index a12d848..8d81d7f 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.230101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.260101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 0b2597e..058841b 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.230101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.260101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 4cfb683108d8bf6c398db83dcf7b745f2592724b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 26 May 2025 16:02:11 +0000 Subject: [PATCH 139/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.261535 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 95a9925..7c3ce0d 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.260101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.261535 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.260101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.261535 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 8d81d7f..2db2a3f 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.260101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.261535 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 058841b..b6dff0b 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.260101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.261535 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 7d2cff27a8f34d31e456617a36be8eb3b954e918 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 27 May 2025 20:14:34 +0000 Subject: [PATCH 140/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.272002 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 7c3ce0d..89586ca 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.261535 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.272002 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.261535 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.272002 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 2db2a3f..7a6e927 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.261535 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.272002 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index b6dff0b..45b9abd 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.261535 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.272002 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 4aee867d5a349b56a7f6087e3939886fdab520eb Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 28 May 2025 13:15:36 +0000 Subject: [PATCH 141/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.281302 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 89586ca..efbf0ca 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.272002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281302 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.272002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281302 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 7a6e927..228bad2 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.272002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281302 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 45b9abd..0254ada 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.272002 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281302 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 9d9a3d48834f2380e9a83ecb685e90be3045f6e0 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 28 May 2025 18:02:20 +0000 Subject: [PATCH 142/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.281702 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index efbf0ca..5810a99 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281302 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281702 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281302 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281702 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 228bad2..1f3a467 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281302 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281702 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 0254ada..8d62d47 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281302 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281702 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From febfec4434fd44c84ceb375106dd68083e0441b8 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 30 May 2025 02:01:59 +0000 Subject: [PATCH 143/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.05.300102 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 5810a99..5887cd9 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.300102 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.300102 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 1f3a467..0418eef 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.300102 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 8d62d47..4688edb 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.281702 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.300102 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From 039f2cb895fa6ae964bded92bd8084f23cf1f014 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 2 Jun 2025 09:01:32 +0000 Subject: [PATCH 144/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.06.020101 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index 5887cd9..f4e96a1 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.300102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.020101 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.300102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.020101 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 0418eef..4a49e0d 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.300102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.020101 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 4688edb..96b3fdf 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.05.300102 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.020101 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file From db55d4d0d8cbc822ecd7423b60ba046295e76020 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 2 Jun 2025 14:01:57 +0000 Subject: [PATCH 145/145] chore(deps): update git.fml128.ch/fml128/idkyet-builder docker tag to v2025.06.021302 --- aur/action.yml | 4 ++-- builder/action.yml | 2 +- validate/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aur/action.yml b/aur/action.yml index f4e96a1..690d434 100644 --- a/aur/action.yml +++ b/aur/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: Get aur cache key id: cache-aur-key - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.020101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.021302 with: args: generate_aur_cache_key ${{ inputs.layer_config_file }} - name: Restore aur cache @@ -27,7 +27,7 @@ runs: aur-${{ github.repository }}- - name: Build aur if: steps.cache-aur-key.outputs.cache-aur-key != 'empty' && steps.cache-aur-restore.outputs.cache-hit != 'true' - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.020101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.021302 with: args: build_aur_packages ${{ inputs.layer_config_file }} - name: Save aur cache diff --git a/builder/action.yml b/builder/action.yml index 4a49e0d..45e42a2 100644 --- a/builder/action.yml +++ b/builder/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Build image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.020101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.021302 with: args: build ${{ inputs.layer_config_file }} env: diff --git a/validate/action.yml b/validate/action.yml index 96b3fdf..a00df4e 100644 --- a/validate/action.yml +++ b/validate/action.yml @@ -9,6 +9,6 @@ runs: using: "composite" steps: - name: Validate image - uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.020101 + uses: docker://git.fml128.ch/fml128/idkyet-builder:2025.06.021302 with: args: validate ${{ inputs.layer_config_file }} \ No newline at end of file