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
2 changes: 1 addition & 1 deletion .github/actions/php/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ runs:
php-version: "8.3"
coverage: none

- uses: "ramsey/composer-install@v3"
- uses: "ramsey/composer-install@v4"
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
# Composer is handled by auto-package-update.yml (weekly, Sunday)
# Dependabot covers GitHub Actions only to avoid duplicate PRs
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "UTC"
open-pull-requests-limit: 5
4 changes: 2 additions & 2 deletions .github/workflows/auto-package-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
# Must be used to trigger workflow after push
Expand All @@ -25,7 +25,7 @@ jobs:
run: composer update && composer bump && composer update

- # commit only to core contributors who have repository access
uses: stefanzweifel/git-auto-commit-action@v5
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "[ci] package-updates"
commit_author: "GitHub Action <actions@github.com>"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: .env
run: php -r "copy('.env.ci', '.env');"
Expand All @@ -30,7 +30,7 @@ jobs:
test_suite: [Unit, Feature]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: .env
run: php -r "copy('.env.ci', '.env');"
Expand All @@ -43,7 +43,7 @@ jobs:

- name: Upload Laravel Logs
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: TestLaravelLog-${{ matrix.test_suite }}
path: storage/logs
Expand All @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install SSH key
run: >
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: github.event.pull_request.head.repo.full_name == '128na/SimutransCrossSearch'
steps:
- if: github.event.pull_request.head.repo.full_name == github.repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# Must be used to trigger workflow after push
token: ${{ secrets.ACCESS_TOKEN }}
Expand All @@ -23,7 +23,7 @@ jobs:
- run: vendor/bin/pint

- # commit only to core contributors who have repository access
uses: stefanzweifel/git-auto-commit-action@v5
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "[rector] Rector fixes"
commit_author: "GitHub Action <actions@github.com>"
Expand Down
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading