Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 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
d8c8a52
fix(ci): remove redundant renovate[bot] check from dependabot-approve…
joshtrichards Apr 5, 2026
6263744
ci(cypress): drop buildjet/cache
joshtrichards Apr 6, 2026
7c7169b
ci(cmd-openapi): drop buildjet
joshtrichards Apr 6, 2026
c567903
ci(cmd-compile): drop buildjet
joshtrichards Apr 6, 2026
ce3aa96
Merge pull request #698 from nextcloud/jtr/ci-buildjet-shutdown
skjnldsv Apr 7, 2026
369b433
Merge pull request #696 from nextcloud/jtr/fix-drop-renovate-from-dep…
skjnldsv Apr 7, 2026
7a3f16a
feat(nextcloud-ocp): Support composer-bin usage for nextcloud-ocp pac…
nickvergessen Apr 7, 2026
9eaade4
build(deps): bump cypress-io/github-action in /workflow-templates
dependabot[bot] Apr 8, 2026
754d8a3
Merge pull request #700 from nextcloud/dependabot/github_actions/work…
nickvergessen Apr 8, 2026
0816e4b
Merge pull request #699 from nextcloud/feat/noid/support-composer-bin
nickvergessen Apr 8, 2026
50d888e
build(deps): bump andstor/file-existence-action in /workflow-templates
dependabot[bot] Apr 10, 2026
05b46b6
Merge pull request #701 from nextcloud/dependabot/github_actions/work…
nickvergessen Apr 10, 2026
6c97bab
ci(deps): bump andstor/file-existence-action in /.github/workflows
dependabot[bot] Apr 11, 2026
f67fdcb
ci(deps): bump astral-sh/setup-uv in /.github/workflows
dependabot[bot] Apr 11, 2026
97eaf08
Merge pull request #702 from nextcloud/dependabot/github_actions/dot-…
nickvergessen Apr 11, 2026
506aa01
Merge pull request #703 from nextcloud/dependabot/github_actions/dot-…
nickvergessen Apr 11, 2026
db2db65
chore: merge updated from Nextcloud organization
nextcloud-command Apr 12, 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@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.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@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.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@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0
Expand Down
6 changes: 3 additions & 3 deletions workflow-templates/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Check composer.json
id: check_composer
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0
with:
files: 'composer.json'

Expand All @@ -68,7 +68,7 @@ jobs:
TESTING=true npm run build --if-present

- name: Save context
uses: buildjet/cache/save@3e70d19e31d6a8030aeddf6ed8dbe601f94d09f4 # v4.0.2
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
key: cypress-context-${{ github.run_id }}
path: ./
Expand All @@ -88,7 +88,7 @@ jobs:

steps:
- name: Restore context
uses: buildjet/cache/restore@3e70d19e31d6a8030aeddf6ed8dbe601f94d09f4 # v4.0.2
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
fail-on-cache-miss: true
key: cypress-context-${{ github.run_id }}
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