8 Commits

Author SHA1 Message Date
David Molineus
eca2b6e00c Merge pull request #10 from netzmacht/dependabot/github_actions/actions/cache-3
github-actions(deps): bump actions/cache from 1 to 3
2022-11-29 14:28:14 +01:00
David Molineus
2becf0344a Merge pull request #11 from netzmacht/dependabot/github_actions/actions/checkout-3
github-actions(deps): bump actions/checkout from 2 to 3
2022-11-29 14:28:05 +01:00
David Molineus
b4ab2bbc78 Merge pull request #12 from netzmacht/dependabot/github_actions/actions/upload-artifact-3
github-actions(deps): bump actions/upload-artifact from 2 to 3
2022-11-29 14:27:54 +01:00
dependabot[bot]
741efef65d github-actions(deps): bump actions/upload-artifact from 2 to 3
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-29 12:41:27 +00:00
dependabot[bot]
5ac8d1141c github-actions(deps): bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-29 12:41:25 +00:00
dependabot[bot]
8f05dfe6d6 github-actions(deps): bump actions/cache from 1 to 3
Bumps [actions/cache](https://github.com/actions/cache) from 1 to 3.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v1...v3)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-29 12:41:22 +00:00
David Molineus
2da4b02ddc Merge tag '1.4.0' 2022-11-29 13:40:44 +01:00
David Molineus
addf773edc Merge tag '1.4.0' 2022-11-29 13:39:36 +01:00

View File

@@ -29,7 +29,7 @@ jobs:
steps:
- name: Pull source
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
@@ -38,7 +38,7 @@ jobs:
coverage: xdebug2
- name: Cache composer cache directory
uses: actions/cache@v1
uses: actions/cache@v3
env:
cache-name: composer-cache-dir-${{ matrix.php }}
with:
@@ -49,7 +49,7 @@ jobs:
run: composer install
- name: Cache vendor directory of phpcq tool runner
uses: actions/cache@v1
uses: actions/cache@v3
env:
cache-name: vendor-${{ matrix.php }}
with:
@@ -68,7 +68,7 @@ jobs:
run: $GITHUB_WORKSPACE/vendor/bin/phpcq run -o github-action -o default ${{ matrix.phpcq_flags }} -v
- name: Upload build directory to artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: ${{ success() }} || ${{ failure() }}
with:
name: phpcq-builds-php-${{ matrix.php }}