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 79438fc commit c9b6c1dCopy full SHA for c9b6c1d
.github/workflows/ci-show-output-log.yml
@@ -7,19 +7,22 @@ jobs:
7
runs-on: ubuntu-latest
8
9
steps:
10
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
11
12
- name: Install dependencies
13
- uses: php-actions/composer@master
+ uses: php-actions/composer@92-set-output
14
with:
15
- php_version: 8.0
+ php_version: 8.1
16
ssh_key: ${{ secrets.SSH_KEY }}
17
ssh_key_pub: ${{ secrets.SSH_KEY_PUB }}
18
19
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v3
20
21
name: debug-output
22
path: output.log
23
24
- name: Check the content of the output log
25
run: cat /home/runner/work/example-composer/example-composer/output.log
26
+
27
+ - name: Test what output is
28
+ run: echo "Output is $GITHUB_OUTPUT"
0 commit comments