Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- cron: '15 12 21 07 *' # 21 July 2026
- cron: '15 12 18 08 *' # 18 August 2026
- cron: '15 12 22 09 *' # 22 September 2026
workflow_dispatch:

Check failure on line 18 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / lint / actionlint

[actionlint] reported by reviewdog 🐶 maximum number of inputs for "workflow_dispatch" event is 10 but 11 inputs are provided. see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#providing-inputs [events] Raw Output: e:.github/workflows/build.yml:18:3: maximum number of inputs for "workflow_dispatch" event is 10 but 11 inputs are provided. see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#providing-inputs [events]
inputs:
# Currently limited to only 10 inputs. Workaround is to use JSON as the input and parse it in a job.
# See issue: https://github.com/orgs/community/discussions/8774
Expand Down Expand Up @@ -250,7 +250,7 @@
) | jq -s 'add' | tee "images-${{ matrix.project }}-${{ matrix.builder }}.json"

- name: Upload images list
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: images-${{ matrix.project }}-${{ matrix.builder }}
path: images-${{ matrix.project }}-${{ matrix.builder }}.json
Expand All @@ -259,7 +259,7 @@

# Save manifests
- name: Upload manifest
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: manifest-${{ matrix.project }}-${{ matrix.builder }}
path: |
Expand Down Expand Up @@ -297,7 +297,7 @@
merge-multiple: true

- name: Upload all manifests
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: manifests-${{ needs.trigger.outputs.version}}
path: |
Expand Down
Loading