Skip to content

Commit b14d1a4

Browse files
committed
Updated Drupal to use stable versions in composer.json and CI.
1 parent 7494229 commit b14d1a4

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/ci.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
matrix:
2323
php-versions: ['8.3']
24-
drupal-release: ['alpha', 'beta', 'dev']
24+
drupal-release: ['stable', 'beta', 'dev']
2525
composer-channel: ['stable', 'snapshot']
2626

2727
steps:
@@ -77,8 +77,6 @@ jobs:
7777
composer --verbose require --no-update drupal/core-composer-scaffold:^11@${{ matrix.drupal-release }}
7878
composer --verbose require --no-update drupal/core-recommended:^11@${{ matrix.drupal-release }}
7979
composer --verbose require --no-update --dev drupal/core-dev:^11@${{ matrix.drupal-release }}
80-
# Remove the line below once the package is out of `alpha`.
81-
[[ ${{ matrix.drupal-release }} == 'beta' ]] && composer require chi-teck/drupal-code-generator:^4@alpha
8280
composer --verbose update
8381
8482
- name: Install site

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
"require": {
1313
"composer/installers": "^2.1",
1414
"cweagans/composer-patches": "^1.7",
15-
"drupal/core-composer-scaffold": "^11@alpha",
16-
"drupal/core-recommended": "^11@alpha",
17-
"drush/drush": "^13@beta",
15+
"drupal/core-composer-scaffold": "^11",
16+
"drupal/core-recommended": "^11",
17+
"drush/drush": "^13",
1818
"oomphinc/composer-installers-extender": "^2.0",
1919
"vlucas/phpdotenv": "^5.1",
2020
"webflo/drupal-finder": "^1.3"
2121
},
2222
"require-dev": {
23-
"drupal/core-dev": "^11@alpha",
23+
"drupal/core-dev": "^11",
2424
"ergebnis/composer-normalize": "^2.42"
2525
},
2626
"conflict": {
@@ -36,7 +36,7 @@
3636
"url": "https://asset-packagist.org"
3737
}
3838
],
39-
"minimum-stability": "alpha",
39+
"minimum-stability": "stable",
4040
"prefer-stable": true,
4141
"autoload": {
4242
"classmap": [

0 commit comments

Comments
 (0)