ci: use output rather than env

This appeases my IDE and removes annoying yellow squiggles.
reviewable/pr1203/r1
Tamir Duberstein 1 week ago
parent 56ebe1406e
commit b18b4f7369

@ -34,8 +34,9 @@ jobs:
- run: cargo xtask public-api --bless - run: cargo xtask public-api --bless
- run: cargo fmt --all - run: cargo fmt --all
- run: echo "LIBBPF_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV - id: libbpf
working-directory: xtask/libbpf working-directory: xtask/libbpf
run: echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
- uses: peter-evans/create-pull-request@v7 - uses: peter-evans/create-pull-request@v7
with: with:
@ -43,9 +44,9 @@ jobs:
commit-message: | commit-message: |
aya-obj, aya-ebpf-bindings: regenerate aya-obj, aya-ebpf-bindings: regenerate
libbpf commit: ${{ env.LIBBPF_SHA }} libbpf commit: ${{ steps.libbpf.outputs.sha }}
title: 'aya-obj, aya-ebpf-bindings: regenerate' title: 'aya-obj, aya-ebpf-bindings: regenerate'
body: | body: |
**Automated changes** **Automated changes**
libbpf commit: ${{ env.LIBBPF_SHA }} libbpf commit: ${{ steps.libbpf.outputs.sha}}

Loading…
Cancel
Save