Skip to content

Commit

Permalink
ci: upgrade steps
Browse files Browse the repository at this point in the history
  • Loading branch information
g105b committed Apr 25, 2024
1 parent 2ba02a7 commit 6474dfa
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
php: [ 8.1, 8.2, 8.3 ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Cache Composer dependencies
uses: actions/cache@v3
Expand All @@ -27,7 +27,7 @@ jobs:
run: mkdir /tmp/github-actions/ && tar -cvf /tmp/github-actions/build.tar ./

- name: Upload build archive for test runners
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-artifact
path: /tmp/github-actions
Expand All @@ -43,7 +43,7 @@ jobs:
coverage: ${{ steps.store-coverage.outputs.coverage_text }}

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-artifact
path: /tmp/github-actions
Expand Down Expand Up @@ -73,9 +73,9 @@ jobs:
needs: [ phpunit ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: code-coverage
path: _coverage
Expand All @@ -94,7 +94,7 @@ jobs:
php: [ 8.1, 8.2, 8.3 ]

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-artifact
path: /tmp/github-actions
Expand All @@ -117,7 +117,7 @@ jobs:
php: [ 8.1, 8.2, 8.3 ]

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-artifact
path: /tmp/github-actions
Expand All @@ -141,7 +141,7 @@ jobs:
php: [ 8.1, 8.2, 8.3 ]

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-artifact
path: /tmp/github-actions
Expand Down

0 comments on commit 6474dfa

Please sign in to comment.