From c7640827d4d3bd08ee7d6e4ee4592dee69accb3f Mon Sep 17 00:00:00 2001 From: Martijn van der Lee Date: Sun, 2 Aug 2026 09:13:48 +0200 Subject: [PATCH 1/2] Modernize CI action versions --- .github/workflows/tests.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 804af7d..cee98ea 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,6 +7,9 @@ on: # The runtime is only ~ 30s due to parallelization. pull_request: +permissions: + contents: read + jobs: test: name: 'Run tests' @@ -18,7 +21,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Include tags. fetch-depth: 0 @@ -29,7 +32,7 @@ jobs: php-version: ${{ matrix.php }} - name: Install dependencies (using the workflow cache) - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v4 - name: Run tests run: | @@ -41,7 +44,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup PHP 7.4 uses: shivammathur/setup-php@v2 From 132f8752bf255926a73253f6cd368234f73c5d37 Mon Sep 17 00:00:00 2001 From: Martijn van der Lee Date: Sun, 2 Aug 2026 09:45:12 +0200 Subject: [PATCH 2/2] Modernize the language update workflow --- .github/workflows/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/languages.yml b/.github/workflows/languages.yml index 45263b0..77d1620 100644 --- a/.github/workflows/languages.yml +++ b/.github/workflows/languages.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Include tags. fetch-depth: 0