Skip to content

Commit

Permalink
update GH Action
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyraul committed Jul 18, 2023
1 parent 17d5645 commit af3516d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/grumphp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- v1
push:
tags:
- '*'
- "*"
branches:
- v1

Expand All @@ -18,9 +18,9 @@ jobs:
fail-fast: false
matrix:
php-versions:
- '7.4'
- '8.0'
- '8.1'
- "7.4"
- "8.0"
- "8.1"
# - '8.2'
steps:
- uses: actions/checkout@v3
Expand All @@ -34,7 +34,7 @@ jobs:
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
# Use composer.json for key, if composer.lock is not committed.
Expand Down Expand Up @@ -64,10 +64,10 @@ jobs:
if: matrix.php-versions == '7.4'
- name: Compile Result Upload
if: matrix.php-versions == '7.4'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: jeeves_new.phar
path: jeeves.phar
name: jeeves_new.phar
path: jeeves.phar
- name: Upload to Releases
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/') && matrix.php-versions == '7.4'
Expand Down
4 changes: 2 additions & 2 deletions test/Expectations/Crud/74/v1/etc/db_schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</constraint>
</table>
<table name="mygento_sample_module_card" resource="default" engine="innodb" comment="Card Table">
<column xsi:type="int" name="card_id" nullable="false" identity="true" unsigned="true" comment="Card ID"/>
<column xsi:type="smallint" name="card_id" nullable="false" identity="true" unsigned="false" comment="Card ID"/>
<column xsi:type="varchar" name="title" nullable="true" length="255" comment="Title"/>
<column xsi:type="varchar" name="code" nullable="true" length="255" comment="Code"/>
<column xsi:type="int" name="category_id" nullable="false" identity="false" unsigned="false" comment="Category_id"/>
Expand All @@ -55,7 +55,7 @@
</constraint>
</table>
<table name="mygento_sample_module_card_store" resource="default" engine="innodb" comment="Card Table With Store">
<column xsi:type="int" name="entity_id" nullable="false" identity="false" unsigned="true" comment="Entity ID"/>
<column xsi:type="smallint" name="entity_id" nullable="false" identity="false" unsigned="false" comment="Entity ID"/>
<column xsi:type="smallint" name="store_id" nullable="false" identity="false" unsigned="true" comment="Store ID"/>
<constraint xsi:type="primary" referenceId="PRIMARY">
<column name="entity_id"/>
Expand Down

0 comments on commit af3516d

Please sign in to comment.