From 73933bd17f87cba709cc191ff3f03a8509470938 Mon Sep 17 00:00:00 2001 From: Sean O'Brien Date: Mon, 22 Sep 2025 17:15:54 -0400 Subject: [PATCH] chore: add 8.5 support --- .github/workflows/ci.yml | 2 +- .github/workflows/closed-issue-message.yml | 2 ++ .github/workflows/stale_issues.yml | 4 ++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fbd0f8f..7df346a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['8.1', '8.2', '8.3', '8.4'] + php-versions: ['8.1', '8.2', '8.3', '8.4', '8.5'] name: Run tests on PHP ${{ matrix.php-versions }} steps: diff --git a/.github/workflows/closed-issue-message.yml b/.github/workflows/closed-issue-message.yml index 3340afb..cc35d24 100644 --- a/.github/workflows/closed-issue-message.yml +++ b/.github/workflows/closed-issue-message.yml @@ -4,6 +4,8 @@ on: types: [closed] jobs: auto_comment: + permissions: + issues: write runs-on: ubuntu-latest steps: - uses: aws-actions/closed-issue-message@v1 diff --git a/.github/workflows/stale_issues.yml b/.github/workflows/stale_issues.yml index 1156d97..cd51ff1 100644 --- a/.github/workflows/stale_issues.yml +++ b/.github/workflows/stale_issues.yml @@ -5,6 +5,10 @@ on: schedule: - cron: "0 0 * * *" +permissions: + issues: write + pull-requests: write + jobs: cleanup: runs-on: ubuntu-latest