Changeset 59679 for trunk/.github/workflows/reusable-php-compatibility.yml
- Timestamp:
- 01/22/2025 03:13:21 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/reusable-php-compatibility.yml
r59354 r59679 12 12 type: 'string' 13 13 default: 'latest' 14 15 # Disable permissions for all available scopes by default. 16 # Any needed permissions should be configured at the job level. 17 permissions: {} 14 18 15 19 jobs: … … 40 44 with: 41 45 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 46 persist-credentials: false 42 47 43 48 - name: Set up PHP … … 56 61 - name: "Get last Monday's date" 57 62 id: get-date 58 run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> $GITHUB_OUTPUT63 run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> "$GITHUB_OUTPUT" 59 64 60 65 - name: Cache PHP compatibility scan cache … … 72 77 73 78 - name: Make Composer packages available globally 74 run: echo "${PWD}/vendor/bin" >> $GITHUB_PATH79 run: echo "${PWD}/vendor/bin" >> "$GITHUB_PATH" 75 80 76 81 - name: Run PHP compatibility tests
Note: See TracChangeset
for help on using the changeset viewer.