mirror of
https://github.com/Z3Prover/z3
synced 2026-08-02 12:13:25 +00:00
Recompile agentic workflow lockfiles and refresh pinned AW metadata (#10315)
This addresses stale generated Agentic Workflow artifacts by recompiling the workflow sources and updating the checked-in lock outputs. The update brings lockfiles and shared action pin metadata back in sync with the current compiler/runtime generation. - **Scope of regeneration** - Recompiled all Agentic Workflow markdown definitions in `.github/workflows/*.md` into their corresponding `.lock.yml` outputs. - Updated generated maintenance workflow output in `.github/workflows/agentics-maintenance.yml`. - **Pinned dependency/metadata refresh** - Refreshed `.github/aw/actions-lock.json` and lockfile manifests (actions, container digests, compiler metadata) to the latest generated state. - Resulting lock headers now reflect the current compiler/toolchain metadata used for generation. - **Auth/runtime shape in generated lockfiles** - Regenerated lock outputs include current AW-generated runtime/env wiring for Copilot execution paths and token handling where applicable. ```yaml # Example (lockfile header after regeneration) # gh-aw-metadata: # compiler_version: "v0.83.4" ``` Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
parent
a9133ee475
commit
141e99ffe7
20 changed files with 2419 additions and 2213 deletions
5
.github/aw/actions-lock.json
vendored
5
.github/aw/actions-lock.json
vendored
|
|
@ -29,11 +29,6 @@
|
|||
"repo": "actions/upload-artifact",
|
||||
"version": "v7.0.1",
|
||||
"sha": "043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"
|
||||
},
|
||||
"github/gh-aw-actions/setup@v0.81.6": {
|
||||
"repo": "github/gh-aw-actions/setup",
|
||||
"version": "v0.81.6",
|
||||
"sha": "ba6380cc6e5be5d21677bebe04d52fb48e3abec7"
|
||||
}
|
||||
},
|
||||
"containers": {
|
||||
|
|
|
|||
241
.github/workflows/a3-python.lock.yml
generated
vendored
241
.github/workflows/a3-python.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
255
.github/workflows/academic-citation-tracker.lock.yml
generated
vendored
255
.github/workflows/academic-citation-tracker.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
93
.github/workflows/agentics-maintenance.yml
vendored
93
.github/workflows/agentics-maintenance.yml
vendored
|
|
@ -1,13 +1,13 @@
|
|||
# This file was automatically generated by pkg/workflow/maintenance_workflow.go (v0.81.6). DO NOT EDIT. To debug this workflow, load the skill at https://github.com/github/gh-aw/blob/main/debug.md
|
||||
# This file was automatically generated by pkg/workflow/maintenance_workflow.go (v0.83.4). DO NOT EDIT. To debug this workflow, load the skill at https://github.com/github/gh-aw/blob/main/debug.md
|
||||
#
|
||||
# ___ _ _
|
||||
# / _ \ | | (_)
|
||||
# | |_| | __ _ ___ _ __ | |_ _ ___
|
||||
# ___ _ _
|
||||
# / _ \ | | (_)
|
||||
# | |_| | __ _ ___ _ __ | |_ _ ___
|
||||
# | _ |/ _` |/ _ \ '_ \| __| |/ __|
|
||||
# | | | | (_| | __/ | | | |_| | (__
|
||||
# | | | | (_| | __/ | | | |_| | (__
|
||||
# \_| |_/\__, |\___|_| |_|\__|_|\___|
|
||||
# __/ |
|
||||
# _ _ |___/
|
||||
# _ _ |___/
|
||||
# | | | | / _| |
|
||||
# | | | | ___ _ __ _ __| |_| | _____ ____
|
||||
# | |/\| |/ _ \ '__| |/ /| _| |/ _ \ \ /\ / / ___|
|
||||
|
|
@ -87,16 +87,14 @@ on:
|
|||
permissions: {}
|
||||
|
||||
jobs:
|
||||
close-expired-entities:
|
||||
close-expired-discussions:
|
||||
if: ${{ (!(github.event.repository.fork)) && github.event_name != 'push' && (github.event_name != 'workflow_dispatch' && github.event_name != 'workflow_call' || inputs.operation == '') }}
|
||||
runs-on: ubuntu-slim
|
||||
permissions:
|
||||
discussions: write
|
||||
issues: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
|
|
@ -108,6 +106,16 @@ jobs:
|
|||
setupGlobals(core, github, context, exec, io, getOctokit);
|
||||
const { main } = require('${{ runner.temp }}/gh-aw/actions/close_expired_discussions.cjs');
|
||||
await main();
|
||||
close-expired-issues:
|
||||
if: ${{ (!(github.event.repository.fork)) && github.event_name != 'push' && (github.event_name != 'workflow_dispatch' && github.event_name != 'workflow_call' || inputs.operation == '') }}
|
||||
runs-on: ubuntu-slim
|
||||
permissions:
|
||||
issues: write
|
||||
steps:
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
- name: Close expired issues
|
||||
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
|
||||
|
|
@ -117,6 +125,16 @@ jobs:
|
|||
setupGlobals(core, github, context, exec, io, getOctokit);
|
||||
const { main } = require('${{ runner.temp }}/gh-aw/actions/close_expired_issues.cjs');
|
||||
await main();
|
||||
close-expired-pull-requests:
|
||||
if: ${{ (!(github.event.repository.fork)) && github.event_name != 'push' && (github.event_name != 'workflow_dispatch' && github.event_name != 'workflow_call' || inputs.operation == '') }}
|
||||
runs-on: ubuntu-slim
|
||||
permissions:
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
- name: Close expired pull requests
|
||||
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
|
||||
|
|
@ -134,7 +152,7 @@ jobs:
|
|||
actions: write
|
||||
steps:
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
|
|
@ -158,12 +176,12 @@ jobs:
|
|||
operation: ${{ steps.record.outputs.operation }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
|
|
@ -178,9 +196,9 @@ jobs:
|
|||
await main();
|
||||
|
||||
- name: Install gh-aw
|
||||
uses: github/gh-aw-actions/setup-cli@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup-cli@v0.83.4
|
||||
with:
|
||||
version: v0.81.6
|
||||
version: v0.83.4
|
||||
|
||||
- name: Run operation
|
||||
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
|
||||
|
|
@ -210,7 +228,7 @@ jobs:
|
|||
pull-requests: write
|
||||
steps:
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
|
|
@ -249,14 +267,15 @@ jobs:
|
|||
run_url: ${{ steps.record.outputs.run_url }}
|
||||
steps:
|
||||
- name: Checkout actions folder
|
||||
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||
with:
|
||||
sparse-checkout: |
|
||||
actions
|
||||
clean: false
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
|
|
@ -297,12 +316,12 @@ jobs:
|
|||
issues: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
|
|
@ -317,9 +336,9 @@ jobs:
|
|||
await main();
|
||||
|
||||
- name: Install gh-aw
|
||||
uses: github/gh-aw-actions/setup-cli@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup-cli@v0.83.4
|
||||
with:
|
||||
version: v0.81.6
|
||||
version: v0.83.4
|
||||
|
||||
- name: Create missing labels
|
||||
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
|
||||
|
|
@ -343,12 +362,12 @@ jobs:
|
|||
issues: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
|
|
@ -363,13 +382,13 @@ jobs:
|
|||
await main();
|
||||
|
||||
- name: Install gh-aw
|
||||
uses: github/gh-aw-actions/setup-cli@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup-cli@v0.83.4
|
||||
with:
|
||||
version: v0.81.6
|
||||
version: v0.83.4
|
||||
|
||||
- name: Restore activity report logs cache
|
||||
id: activity_report_logs_cache
|
||||
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
||||
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
||||
with:
|
||||
path: ./.cache/gh-aw/activity-report-logs
|
||||
key: ${{ runner.os }}-activity-report-logs-${{ github.repository }}-${{ github.ref_name }}-${{ github.run_id }}
|
||||
|
|
@ -448,12 +467,12 @@ jobs:
|
|||
issues: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
|
|
@ -468,13 +487,13 @@ jobs:
|
|||
await main();
|
||||
|
||||
- name: Install gh-aw
|
||||
uses: github/gh-aw-actions/setup-cli@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup-cli@v0.83.4
|
||||
with:
|
||||
version: v0.81.6
|
||||
version: v0.83.4
|
||||
|
||||
- name: Restore forecast report logs cache
|
||||
id: forecast_report_logs_cache
|
||||
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
||||
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
||||
with:
|
||||
path: ./.github/aw/logs
|
||||
key: ${{ runner.os }}-forecast-report-logs-${{ github.repository }}-${{ github.ref_name }}-${{ github.run_id }}
|
||||
|
|
@ -545,7 +564,7 @@ jobs:
|
|||
issues: write
|
||||
steps:
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
|
|
@ -577,12 +596,12 @@ jobs:
|
|||
issues: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Setup Scripts
|
||||
uses: github/gh-aw-actions/setup@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup@v0.83.4
|
||||
with:
|
||||
destination: ${{ runner.temp }}/gh-aw/actions
|
||||
|
||||
|
|
@ -597,9 +616,9 @@ jobs:
|
|||
await main();
|
||||
|
||||
- name: Install gh-aw
|
||||
uses: github/gh-aw-actions/setup-cli@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6
|
||||
uses: github/gh-aw-actions/setup-cli@v0.83.4
|
||||
with:
|
||||
version: v0.81.6
|
||||
version: v0.83.4
|
||||
|
||||
- name: Validate workflows and file issue on findings
|
||||
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
|
||||
|
|
|
|||
257
.github/workflows/api-coherence-checker.lock.yml
generated
vendored
257
.github/workflows/api-coherence-checker.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
243
.github/workflows/build-warning-fixer.lock.yml
generated
vendored
243
.github/workflows/build-warning-fixer.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
253
.github/workflows/code-conventions-analyzer.lock.yml
generated
vendored
253
.github/workflows/code-conventions-analyzer.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
249
.github/workflows/code-simplifier.lock.yml
generated
vendored
249
.github/workflows/code-simplifier.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
240
.github/workflows/compare-stats-anomaly-reporter.lock.yml
generated
vendored
240
.github/workflows/compare-stats-anomaly-reporter.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
257
.github/workflows/csa-analysis.lock.yml
generated
vendored
257
.github/workflows/csa-analysis.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
252
.github/workflows/issue-backlog-processor.lock.yml
generated
vendored
252
.github/workflows/issue-backlog-processor.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
266
.github/workflows/memory-safety-report.lock.yml
generated
vendored
266
.github/workflows/memory-safety-report.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
237
.github/workflows/ostrich-benchmark.lock.yml
generated
vendored
237
.github/workflows/ostrich-benchmark.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
238
.github/workflows/release-notes-updater.lock.yml
generated
vendored
238
.github/workflows/release-notes-updater.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
255
.github/workflows/smtlib-benchmark-finder.lock.yml
generated
vendored
255
.github/workflows/smtlib-benchmark-finder.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
276
.github/workflows/specbot-crash-analyzer.lock.yml
generated
vendored
276
.github/workflows/specbot-crash-analyzer.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
257
.github/workflows/tactic-to-simplifier.lock.yml
generated
vendored
257
.github/workflows/tactic-to-simplifier.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
239
.github/workflows/tptp-benchmark.lock.yml
generated
vendored
239
.github/workflows/tptp-benchmark.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
257
.github/workflows/workflow-suggestion-agent.lock.yml
generated
vendored
257
.github/workflows/workflow-suggestion-agent.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
262
.github/workflows/zipt-code-reviewer.lock.yml
generated
vendored
262
.github/workflows/zipt-code-reviewer.lock.yml
generated
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue