Skip to content

Commit

Permalink
Remove master refrences
Browse files Browse the repository at this point in the history
  • Loading branch information
jaapio committed Jun 19, 2020
1 parent 6e6ea18 commit 9a5f0e5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
on:
push:
branches:
- master
- 4.x
pull_request:
name: Qa workflow
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Restore/cache vendor folder
uses: actions/cache@v1
with:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
name: Unit tests
needs: setup
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Restore/cache vendor folder
uses: actions/cache@v1
with:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
- setup
- phpunit-with-coverage
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Restore/cache vendor folder
uses: actions/cache@v1
with:
Expand All @@ -111,7 +111,7 @@ jobs:
all-tools-${{ github.sha }}-
all-tools-
- name: Setup PHP
uses: shivammathur/setup-php@master
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extension-csv: mbstring, intl, iconv, libxml, dom, json, simplexml, zlib
Expand All @@ -124,7 +124,7 @@ jobs:
runs-on: ubuntu-latest
needs: [setup]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Restore/cache vendor folder
uses: actions/cache@v1
with:
Expand All @@ -140,7 +140,7 @@ jobs:
runs-on: ubuntu-latest
needs: [phpunit-with-coverage]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Restore/cache vendor folder
uses: actions/cache@v1
with:
Expand All @@ -160,7 +160,7 @@ jobs:
# runs-on: ubuntu-latest
# needs: [phpunit-with-coverage]
# steps:
# - uses: actions/checkout@master
# - uses: actions/checkout@v2
# - name: Restore/cache vendor folder
# uses: actions/cache@v1
# with:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
"dev-4.x": "4.1.x-dev"
}
}
}

0 comments on commit 9a5f0e5

Please sign in to comment.