Skip to content

Releases: doctrine/.github

PHP 8.2, ubuntu 22.04

10 Dec 22:38
3.0.0
70ffd93
Compare
Choose a tag to compare

Changed

  • jobs now run by default on PHP 8.2
  • jobs now run on ubuntu 22.04

Dependency upgrade

04 Oct 18:53
cf37eff
Compare
Choose a tag to compare

All the actions we are relying on have been upgraded to their latest major version.

2.0.0

11 Aug 15:16
eefa7e1
Compare
Choose a tag to compare

PHP 8.1 as default

All workflows are running on PHP 8.1 by default now. The "Continuous Integration" workflow runs on PHP 7.2 – 8.1 by default. Of course, you can still override this setting if you like.

1.5.0

22 Jun 12:28
1.5.0
87f8373
Compare
Choose a tag to compare

New "Composer Lint" workflow

A new workflow has been added, allowing to check if composer.json is normalized according to https://github.com/ergebnis/composer-normalize.

1.4.1

26 Dec 22:46
1.4.1
8a70267
Compare
Choose a tag to compare

Bugfix for Github BC-break

Since a few days, attempts to release when using previous versions will fail with

error parsing called workflow
"doctrine/.github/.github/workflows/[email protected]":
workflow is invalid: secret name GITHUB_TOKEN within workflow_call
can not be used since it would collide with system reserved name

When upgrading, it is no longer required to pass that secret:

 name: "Git tag, release & create merge-up PR"
 uses: "doctrine/.github/.github/workflows/[email protected]"
 secrets:
-    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
     GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
     GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
     ORGANIZATION_ADMIN_TOKEN: ${{ secrets.ORGANIZATION_ADMIN_TOKEN }}