Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
e64eca3
build(deps): bump dorny/paths-filter in /workflow-templates
dependabot[bot] Mar 23, 2026
0066be7
build(deps): bump shivammathur/setup-php in /workflow-templates
dependabot[bot] Mar 23, 2026
c714200
build(deps): bump svenstaro/upload-release-action in /workflow-templates
dependabot[bot] Mar 24, 2026
dc39412
Merge pull request #688 from nextcloud/dependabot/github_actions/work…
nickvergessen Mar 24, 2026
d05cd07
Merge pull request #687 from nextcloud/dependabot/github_actions/work…
nickvergessen Mar 24, 2026
2528743
Merge pull request #686 from nextcloud/dependabot/github_actions/work…
nickvergessen Mar 24, 2026
7bd3cfc
build(deps): bump codecov/codecov-action in /workflow-templates
dependabot[bot] Mar 26, 2026
299835e
Merge pull request #689 from nextcloud/dependabot/github_actions/work…
nickvergessen Mar 26, 2026
b70daca
ci(deps): bump astral-sh/setup-uv in /.github/workflows
dependabot[bot] Mar 28, 2026
fce6261
Merge pull request #690 from nextcloud/dependabot/github_actions/dot-…
nickvergessen Mar 28, 2026
f02b5ca
feat: allow org workflows dispatch
skjnldsv Mar 28, 2026
501cf34
fix(sync): Don't allow to dispatch against repositories that sync
nickvergessen Mar 29, 2026
120920c
build(deps): bump cypress-io/github-action in /workflow-templates
dependabot[bot] Mar 30, 2026
3c2952a
Merge pull request #694 from nextcloud/dependabot/github_actions/work…
nickvergessen Mar 30, 2026
ed0c144
Merge pull request #693 from nextcloud/bugfix/692/dont-dispatch-when-…
skjnldsv Mar 30, 2026
fa6e2b9
Merge pull request #691 from nextcloud/chore/workflow-org-dispatch
skjnldsv Mar 30, 2026
0d97b79
build(deps): bump codecov/codecov-action in /workflow-templates
dependabot[bot] Apr 3, 2026
9484c29
Merge pull request #695 from nextcloud/dependabot/github_actions/work…
nickvergessen Apr 4, 2026
ea3c4cc
chore: merge updated from Nextcloud organization
nextcloud-command Apr 5, 2026
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
13 changes: 13 additions & 0 deletions .github/workflows/dispatch-workflow-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,19 @@ jobs:
repository: ${{ github.repository_owner }}/${{ github.event.inputs.repository }}
ref: ${{ github.event.inputs.branch }}

- name: Check sync-workflow-templates.yml file existence
id: check_sync_workflow_templates_existence
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
with:
files: target/.github/workflows/sync-workflow-templates.yml

- name: Fail when synced # zizmor: ignore[template-injection]
if: ${{ steps.check_sync_workflow_templates_existence.outputs.files_exists == 'true' }}
run: |
echo 'Repository is syncing workflows. Please dispatch the workflow on the repository instead:'
echo 'https://github.com/${{ github.repository_owner }}/${{ matrix.repositories }}/actions/workflows/sync-workflow-templates.yml'
exit 1

- name: Checkout source repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/dispatch-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,19 @@ jobs:
path: target
repository: ${{ github.repository_owner }}/${{ matrix.repositories }}

- name: Check sync-workflow-templates.yml file existence
id: check_sync_workflow_templates_existence
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
with:
files: target/.github/workflows/sync-workflow-templates.yml

- name: Fail when synced # zizmor: ignore[template-injection]
if: ${{ steps.check_sync_workflow_templates_existence.outputs.files_exists == 'true' }}
run: |
echo 'Repository is syncing workflows. Please dispatch the workflow on the repository instead:'
echo 'https://github.com/${{ github.repository_owner }}/${{ matrix.repositories }}/actions/workflows/sync-workflow-templates.yml'
exit 1

- name: Check ${{ github.event.inputs.name }} file existence
id: check_file_existence
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-yaml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
line-length: warning

- name: Install the latest version of uv
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0

- name: Check GitHub actions
run: uvx zizmor --min-severity medium .github/workflows/*.yml
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/node-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
run: npm run test:coverage --if-present

- name: Collect coverage
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
with:
files: ./coverage/lcov.info
env:
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: "grep 'min: ${{ steps.versions.outputs.php-min-id }}' phpstan.neon"

- name: Set up php${{ steps.versions.outputs.php-available }}
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # v2.37.0
with:
php-version: ${{ steps.versions.outputs.php-available }}
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/rector-apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2.3.1.3.2

- name: Set up php${{ steps.versions.outputs.php-min }}
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # v2.37.0
with:
php-version: ${{ steps.versions.outputs.php-min }}
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
Expand Down
Loading