Skip to content

Commit

Permalink
Merge branch 'release/0.7.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
eliashaeussler committed May 9, 2022
2 parents 37a6010 + 2cd41d5 commit c39cb22
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cgl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
cgl:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-20.04
needs: phar
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -67,6 +67,8 @@ jobs:
uses: actions/download-artifact@v2
with:
name: phar
- name: Make PHAR executable
run: chmod +x .build/cache-warmup.phar

# Generate metadata
- name: Generate image metadata
Expand Down Expand Up @@ -117,6 +119,8 @@ jobs:
uses: actions/download-artifact@v2
with:
name: phar
- name: Make PHAR executable
run: chmod +x .build/cache-warmup.phar

# Create release
- name: Create release
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- php-version: "8.1"
coverage: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -42,7 +42,7 @@ jobs:
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Define Composer cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: tests-php-${{ matrix.php-version }}
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
${{ github.workspace }}/.build/coverage/clover.xml:clover
if: ${{ matrix.coverage }}
- name: codecov report
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
directory: .build/coverage
fail_ci_if_error: true
Expand All @@ -98,7 +98,7 @@ jobs:
- "8.0"
- "8.1"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -116,7 +116,7 @@ jobs:
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Define Composer cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: tests-lowest-php-${{ matrix.php-version }}
Expand Down

0 comments on commit c39cb22

Please sign in to comment.