Skip to content
Open
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
29 changes: 29 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,40 @@ updates:
schedule:
interval: "daily"
labels:
- "dependencies"
- "php"
- "3.x only"
- package-ecosystem: "composer"
directory: "/"
target-branch: "1.x"
schedule:
interval: "daily"
labels:
- "dependencies"
- "php"
- "1.x only"

- package-ecosystem: "github-actions"
directory: "/"
target-branch: main
schedule:
interval: "daily"
cooldown:
default-days: 5
labels:
- "dependencies"
- "github_actions"
- "ci"
- "3.x only"
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "1.x"
schedule:
interval: "daily"
cooldown:
default-days: 5
labels:
- "dependencies"
- "github_actions"
- "ci"
- "1.x only"
12 changes: 6 additions & 6 deletions .github/workflows/pull-request-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up PHP
uses: shivammathur/setup-php@v2
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # 2.35.5
with:
php-version: '8.3'

- uses: actions/checkout@v4
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Find the pull request source branch name
run: |
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
fi

- name: Checkout scaffolding repo
uses: actions/checkout@v4
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
repository: az-digital/az-quickstart-scaffolding
ref: ${{ env.SCAFFOLDING_BRANCH_NAME }}
Expand All @@ -71,7 +71,7 @@ jobs:
composer install -o

- name: Save build artifact
uses: actions/cache/save@v4
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: ${{ github.workspace }}/az-quickstart-scaffolding
key: azqs-build-${{ github.sha }}
Expand All @@ -82,7 +82,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Restore build artifact cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: ${{ github.workspace }}/az-quickstart-scaffolding
key: azqs-build-${{ github.sha }}
Expand All @@ -97,7 +97,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Restore build artifact cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: ${{ github.workspace }}/az-quickstart-scaffolding
key: azqs-build-${{ github.sha }}
Expand Down