We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 143208c commit 99ee971Copy full SHA for 99ee971
.github/workflows/build.yml
@@ -39,7 +39,7 @@ jobs:
39
run: |
40
echo "PHP_API=$(php-config --phpapi)" >> $GITHUB_ENV
41
- name: Checkout
42
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
43
- name: Build
44
45
phpize
@@ -48,7 +48,7 @@ jobs:
48
make
49
make test REPORT_EXIT_STATUS=1 NO_INTERACTION=1 TESTS="--show-all"
50
- name: Save artifact
51
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v4
52
with:
53
name: fakerandom_${{ env.PHP_API }}.so
54
path: modules/fakerandom.so
@@ -60,7 +60,7 @@ jobs:
60
needs: build
61
steps:
62
- name: Download artifacts
63
- uses: actions/download-artifact@v2
+ uses: actions/download-artifact@v4
64
- name: Combine artifacts
65
66
mkdir -p output
0 commit comments