Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: CI

# Generated by: horde-components 1.0.0-RC1
# Template version: 1.1.0
# Generated: 2026-06-18 15:15:11 UTC
# Template version: 1.2.0
# Generated: 2026-06-18 18:42:54 UTC
#
# DO NOT EDIT - Regenerate with: horde-components ci init
#
Expand All @@ -22,16 +22,16 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Cache horde-components.phar
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /tmp/horde-ci/bin
key: components-phar-${{ hashFiles('bin/ci-bootstrap.sh') }}

- name: Cache QC tools (PHPUnit, PHPStan, PHP-CS-Fixer)
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /tmp/horde-ci/tools
key: ci-tools-${{ hashFiles('.horde.yml') }}
Expand All @@ -44,7 +44,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ci-results-${{ github.run_number }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions bin/ci-bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash
# Horde CI Bootstrap Script (GitHub Actions)
# Generated by: horde-components 1.0.0-RC1
# Template version: 1.1.0
# Generated: 2026-06-18 15:15:11 UTC
# Template version: 1.2.0
# Generated: 2026-06-18 18:42:54 UTC
#
# DO NOT EDIT - Regenerate with: horde-components ci init
#
Expand Down
Loading