瀏覽代碼

ci: use output rather than env

This appeases my IDE and removes annoying yellow squiggles.
Tamir Duberstein 4 周之前
父節點
當前提交
b18b4f7369
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      .github/workflows/gen.yml

+ 4 - 3
.github/workflows/gen.yml

@@ -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}}