Skip to content

Commit 83c5308

Browse files
committed
[BUGFIX] Fix github runner config
We need to go with ubuntu-latest Also update build matrix and latest actions versions
1 parent 59cd8f6 commit 83c5308

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/Test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313

1414
Tests:
1515
name: 'T3 ${{ matrix.typo3 }} - PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}'
16-
runs-on: ubuntu-18.04
16+
runs-on: ubuntu-latest
1717

1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
typo3: [ '^11.5.0', '^12.3.0' ]
22-
php: [ '8.1', '8.2' ]
21+
typo3: [ '^11.5.0', '^12.4.0' ]
22+
php: [ '8.1', '8.2', '8.3' ]
2323
dependency-version: [ lowest, stable ]
2424
experimental: [ false ]
2525

@@ -30,7 +30,7 @@ jobs:
3030
run: sudo /etc/init.d/mysql start
3131

3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Composer Cache Vars
3636
id: composer-cache-vars
@@ -39,7 +39,7 @@ jobs:
3939
echo "timestamp=$(date +"%s")" >> $GITHUB_OUTPUT
4040
4141
- name: Cache Composer dependencies
42-
uses: actions/cache@v3
42+
uses: actions/cache@v4
4343
with:
4444
path: ${{ steps.composer-cache-vars.outputs.dir }}
4545
key: ${{ runner.os }}-composer-${{ matrix.typo3 }}-${{ matrix.dependency-version }}-${{ matrix.php }}-${{ steps.composer-cache-vars.outputs.timestamp }}

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"symfony/console": "^5.4 || ^6.4 || ^7.0",
1717
"symfony/yaml": "^5.4 || ^6.4 || ^7.0",
1818
"typo3/cms-composer-installers": "^4.0@rc || >=5.0",
19-
"typo3/cms-core": "^11.5.20 || ^12.3",
19+
"typo3/cms-core": "^11.5.20 || ^12.4",
2020
"composer-runtime-api": "^2.2",
2121
"symfony/polyfill-php80": "^1.23.1"
2222
},

0 commit comments

Comments
 (0)