Skip to content

Commit 9ff2ba5

Browse files
committed
upgraded aw
1 parent ca87ff9 commit 9ff2ba5

21 files changed

Lines changed: 2817 additions & 1973 deletions

.github/agents/agentic-workflows.agent.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Workflows may optionally include:
3030
- Workflow files: `.github/workflows/*.md` and `.github/workflows/**/*.md`
3131
- Workflow lock files: `.github/workflows/*.lock.yml`
3232
- Shared components: `.github/workflows/shared/*.md`
33-
- Configuration: https://github.com/github/gh-aw/blob/v0.50.3/.github/aw/github-agentic-workflows.md
33+
- Configuration: https://github.com/github/gh-aw/blob/v0.56.2/.github/aw/github-agentic-workflows.md
3434

3535
## Problems This Solves
3636

@@ -52,7 +52,7 @@ When you interact with this agent, it will:
5252
### Create New Workflow
5353
**Load when**: User wants to create a new workflow from scratch, add automation, or design a workflow that doesn't exist yet
5454

55-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.50.3/.github/aw/create-agentic-workflow.md
55+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.56.2/.github/aw/create-agentic-workflow.md
5656

5757
**Use cases**:
5858
- "Create a workflow that triages issues"
@@ -62,7 +62,7 @@ When you interact with this agent, it will:
6262
### Update Existing Workflow
6363
**Load when**: User wants to modify, improve, or refactor an existing workflow
6464

65-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.50.3/.github/aw/update-agentic-workflow.md
65+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.56.2/.github/aw/update-agentic-workflow.md
6666

6767
**Use cases**:
6868
- "Add web-fetch tool to the issue-classifier workflow"
@@ -72,7 +72,7 @@ When you interact with this agent, it will:
7272
### Debug Workflow
7373
**Load when**: User needs to investigate, audit, debug, or understand a workflow, troubleshoot issues, analyze logs, or fix errors
7474

75-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.50.3/.github/aw/debug-agentic-workflow.md
75+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.56.2/.github/aw/debug-agentic-workflow.md
7676

7777
**Use cases**:
7878
- "Why is this workflow failing?"
@@ -82,7 +82,7 @@ When you interact with this agent, it will:
8282
### Upgrade Agentic Workflows
8383
**Load when**: User wants to upgrade workflows to a new gh-aw version or fix deprecations
8484

85-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.50.3/.github/aw/upgrade-agentic-workflows.md
85+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.56.2/.github/aw/upgrade-agentic-workflows.md
8686

8787
**Use cases**:
8888
- "Upgrade all workflows to the latest version"
@@ -92,7 +92,7 @@ When you interact with this agent, it will:
9292
### Create a Report-Generating Workflow
9393
**Load when**: The workflow being created or updated produces reports — recurring status updates, audit summaries, analyses, or any structured output posted as a GitHub issue, discussion, or comment
9494

95-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.50.3/.github/aw/report.md
95+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.56.2/.github/aw/report.md
9696

9797
**Use cases**:
9898
- "Create a weekly CI health report"
@@ -102,7 +102,7 @@ When you interact with this agent, it will:
102102
### Create Shared Agentic Workflow
103103
**Load when**: User wants to create a reusable workflow component or wrap an MCP server
104104

105-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.50.3/.github/aw/create-shared-agentic-workflow.md
105+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.56.2/.github/aw/create-shared-agentic-workflow.md
106106

107107
**Use cases**:
108108
- "Create a shared component for Notion integration"
@@ -112,7 +112,7 @@ When you interact with this agent, it will:
112112
### Fix Dependabot PRs
113113
**Load when**: User needs to close or fix open Dependabot PRs that update dependencies in generated manifest files (`.github/workflows/package.json`, `.github/workflows/requirements.txt`, `.github/workflows/go.mod`)
114114

115-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.50.3/.github/aw/dependabot.md
115+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.56.2/.github/aw/dependabot.md
116116

117117
**Use cases**:
118118
- "Fix the open Dependabot PRs for npm dependencies"
@@ -122,7 +122,7 @@ When you interact with this agent, it will:
122122
### Analyze Test Coverage
123123
**Load when**: The workflow reads, analyzes, or reports test coverage — whether triggered by a PR, a schedule, or a slash command. Always consult this prompt before designing the coverage data strategy.
124124

125-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.50.3/.github/aw/test-coverage.md
125+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.56.2/.github/aw/test-coverage.md
126126

127127
**Use cases**:
128128
- "Create a workflow that comments coverage on PRs"
@@ -169,7 +169,7 @@ gh aw compile --validate
169169

170170
## Important Notes
171171

172-
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.50.3/.github/aw/github-agentic-workflows.md for complete documentation
172+
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.56.2/.github/aw/github-agentic-workflows.md for complete documentation
173173
- Use the MCP tool `agentic-workflows` when running in GitHub Copilot Cloud
174174
- Workflows must be compiled to `.lock.yml` files before running in GitHub Actions
175175
- **Bash tools are enabled by default** - Don't restrict bash commands unnecessarily since workflows are sandboxed by the AWF

.github/aw/actions-lock.json

Lines changed: 101 additions & 91 deletions
Original file line numberDiff line numberDiff line change
@@ -5,110 +5,95 @@
55
"version": "v2.0.7",
66
"sha": "e09e65981758de8b2fdab13c2bfb7c7d5493b0b6"
77
},
8-
"actions/attest-build-provenance@v2.4.0": {
8+
"actions/attest-build-provenance@v4.1.0": {
99
"repo": "actions/attest-build-provenance",
10-
"version": "v2.4.0",
11-
"sha": "e8998f949152b193b063cb0ec769d69d929409be"
10+
"version": "v4.1.0",
11+
"sha": "a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32"
1212
},
13-
"actions/cache/restore@v4.3.0": {
13+
"actions/cache/restore@v5.0.3": {
1414
"repo": "actions/cache/restore",
15-
"version": "v4.3.0",
16-
"sha": "0057852bfaa89a56745cba8c7296529d2fc39830"
15+
"version": "v5.0.3",
16+
"sha": "cdf6c1fa76f9f475f3d7449005a359c84ca0f306"
1717
},
18-
"actions/cache/save@v4.3.0": {
18+
"actions/cache/save@v5.0.3": {
1919
"repo": "actions/cache/save",
20-
"version": "v4.3.0",
21-
"sha": "0057852bfaa89a56745cba8c7296529d2fc39830"
20+
"version": "v5.0.3",
21+
"sha": "cdf6c1fa76f9f475f3d7449005a359c84ca0f306"
2222
},
23-
"actions/cache@v4.3.0": {
23+
"actions/cache@v5.0.3": {
2424
"repo": "actions/cache",
25-
"version": "v4.3.0",
26-
"sha": "0057852bfaa89a56745cba8c7296529d2fc39830"
25+
"version": "v5.0.3",
26+
"sha": "cdf6c1fa76f9f475f3d7449005a359c84ca0f306"
2727
},
28-
"actions/checkout@v4.3.1": {
28+
"actions/checkout@v4": {
2929
"repo": "actions/checkout",
30-
"version": "v4.3.1",
30+
"version": "v4",
3131
"sha": "34e114876b0b11c390a56381ad16ebd13914f8d5"
3232
},
33-
"actions/checkout@v5.0.1": {
33+
"actions/checkout@v5": {
3434
"repo": "actions/checkout",
35-
"version": "v5.0.1",
35+
"version": "v5",
3636
"sha": "93cb6efe18208431cddfb8368fd83d5badbf9bfd"
3737
},
3838
"actions/checkout@v6.0.2": {
3939
"repo": "actions/checkout",
4040
"version": "v6.0.2",
4141
"sha": "de0fac2e4500dabe0009e67214ff5f5447ce83dd"
4242
},
43-
"actions/create-github-app-token@v2.2.1": {
43+
"actions/create-github-app-token@v3.0.0-beta.2": {
4444
"repo": "actions/create-github-app-token",
45-
"version": "v2.2.1",
46-
"sha": "29824e69f54612133e76f7eaac726eef6c875baf"
45+
"version": "v3.0.0-beta.2",
46+
"sha": "bf559f85448f9380bcfa2899dbdc01eb5b37be3a"
4747
},
48-
"actions/download-artifact@v6.0.0": {
48+
"actions/download-artifact@v8.0.0": {
4949
"repo": "actions/download-artifact",
50-
"version": "v6.0.0",
51-
"sha": "018cc2cf5baa6db3ef3c5f8a56943fffe632ef53"
52-
},
53-
"actions/github-script@v7.1.0": {
54-
"repo": "actions/github-script",
55-
"version": "v7.1.0",
56-
"sha": "f28e40c7f34bde8b3046d885e986cb6290c5673b"
50+
"version": "v8.0.0",
51+
"sha": "70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3"
5752
},
5853
"actions/github-script@v8": {
5954
"repo": "actions/github-script",
6055
"version": "v8",
6156
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
6257
},
63-
"actions/setup-dotnet@v4.3.1": {
58+
"actions/setup-dotnet@v5.2.0": {
6459
"repo": "actions/setup-dotnet",
65-
"version": "v4.3.1",
66-
"sha": "67a3573c9a986a3f9c594539f4ab511d57bb3ce9"
60+
"version": "v5.2.0",
61+
"sha": "c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7"
6762
},
68-
"actions/setup-go@v5.6.0": {
63+
"actions/setup-go@v6.3.0": {
6964
"repo": "actions/setup-go",
70-
"version": "v5.6.0",
71-
"sha": "40f1582b2485089dde7abd97c1529aa768e1baff"
72-
},
73-
"actions/setup-go@v6.2.0": {
74-
"repo": "actions/setup-go",
75-
"version": "v6.2.0",
76-
"sha": "7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5"
65+
"version": "v6.3.0",
66+
"sha": "4b73464bb391d4059bd26b0524d20df3927bd417"
7767
},
78-
"actions/setup-java@v4.8.0": {
68+
"actions/setup-java@v5.2.0": {
7969
"repo": "actions/setup-java",
80-
"version": "v4.8.0",
81-
"sha": "c1e323688fd81a25caa38c78aa6df2d33d3e20d9"
70+
"version": "v5.2.0",
71+
"sha": "be666c2fcd27ec809703dec50e508c2fdc7f6654"
8272
},
83-
"actions/setup-node@v4.4.0": {
73+
"actions/setup-node@v6.3.0": {
8474
"repo": "actions/setup-node",
85-
"version": "v4.4.0",
86-
"sha": "49933ea5288caeca8642d1e84afbd3f7d6820020"
75+
"version": "v6.3.0",
76+
"sha": "53b83947a5a98c8d113130e565377fae1a50d02f"
8777
},
88-
"actions/setup-node@v6.2.0": {
89-
"repo": "actions/setup-node",
90-
"version": "v6.2.0",
91-
"sha": "6044e13b5dc448c55e2357c09f80417699197238"
92-
},
93-
"actions/setup-python@v5.6.0": {
78+
"actions/setup-python@v6.2.0": {
9479
"repo": "actions/setup-python",
95-
"version": "v5.6.0",
96-
"sha": "a26af69be951a213d495a4c3e4e4022e16d87065"
80+
"version": "v6.2.0",
81+
"sha": "a309ff8b426b58ec0e2a45f0f869d46889d02405"
9782
},
98-
"actions/upload-artifact@v4.6.2": {
83+
"actions/upload-artifact@v4": {
9984
"repo": "actions/upload-artifact",
100-
"version": "v4.6.2",
85+
"version": "v4",
10186
"sha": "ea165f8d65b6e75b540449e92b4886f43607fa02"
10287
},
103-
"actions/upload-artifact@v5.0.0": {
88+
"actions/upload-artifact@v5": {
10489
"repo": "actions/upload-artifact",
105-
"version": "v5.0.0",
90+
"version": "v5",
10691
"sha": "330a01c490aca151604b8cf639adc76d48f6c5d4"
10792
},
108-
"actions/upload-artifact@v6.0.0": {
93+
"actions/upload-artifact@v7.0.0": {
10994
"repo": "actions/upload-artifact",
110-
"version": "v6.0.0",
111-
"sha": "b7c566a772e6b6bfb58ed0dc250532a479d7789f"
95+
"version": "v7.0.0",
96+
"sha": "bbbca2ddaa5d8feaa63e36b76fdaad77386f024f"
11297
},
11398
"anchore/sbom-action@v0.20.10": {
11499
"repo": "anchore/sbom-action",
@@ -120,10 +105,15 @@
120105
"version": "v0.22.2",
121106
"sha": "28d71544de8eaf1b958d335707167c5f783590ad"
122107
},
123-
"astral-sh/setup-uv@v5.4.2": {
108+
"anchore/sbom-action@v0.23.0": {
109+
"repo": "anchore/sbom-action",
110+
"version": "v0.23.0",
111+
"sha": "17ae1740179002c89186b61233e0f892c3118b11"
112+
},
113+
"astral-sh/setup-uv@v7.3.1": {
124114
"repo": "astral-sh/setup-uv",
125-
"version": "v5.4.2",
126-
"sha": "d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86"
115+
"version": "v7.3.1",
116+
"sha": "5a095e7a2014a4212f075830d4f7277575a9d098"
127117
},
128118
"cli/gh-extension-precompile@v2.1.0": {
129119
"repo": "cli/gh-extension-precompile",
@@ -135,65 +125,85 @@
135125
"version": "v2.0.3",
136126
"sha": "e95548e56dfa95d4e1a28d6f422fafe75c4c26fb"
137127
},
138-
"docker/build-push-action@v6.19.2": {
128+
"docker/build-push-action@v6": {
139129
"repo": "docker/build-push-action",
140-
"version": "v6.19.2",
130+
"version": "v6",
141131
"sha": "10e90e3645eae34f1e60eeb005ba3a3d33f178e8"
142132
},
143-
"docker/login-action@v3.7.0": {
133+
"docker/build-push-action@v7.0.0": {
134+
"repo": "docker/build-push-action",
135+
"version": "v7.0.0",
136+
"sha": "d08e5c354a6adb9ed34480a06d141179aa583294"
137+
},
138+
"docker/login-action@v3": {
144139
"repo": "docker/login-action",
145-
"version": "v3.7.0",
140+
"version": "v3",
146141
"sha": "c94ce9fb468520275223c153574b00df6fe4bcc9"
147142
},
148-
"docker/metadata-action@v5.10.0": {
143+
"docker/login-action@v4.0.0": {
144+
"repo": "docker/login-action",
145+
"version": "v4.0.0",
146+
"sha": "b45d80f862d83dbcd57f89517bcf500b2ab88fb2"
147+
},
148+
"docker/metadata-action@v6.0.0": {
149149
"repo": "docker/metadata-action",
150-
"version": "v5.10.0",
151-
"sha": "c299e40c65443455700f0fdfc63efafe5b349051"
150+
"version": "v6.0.0",
151+
"sha": "030e881283bb7a6894de51c315a6bfe6a94e05cf"
152152
},
153-
"docker/setup-buildx-action@v3.12.0": {
153+
"docker/setup-buildx-action@v3": {
154154
"repo": "docker/setup-buildx-action",
155-
"version": "v3.12.0",
155+
"version": "v3",
156156
"sha": "8d2750c68a42422c14e847fe6c8ac0403b4cbd6f"
157157
},
158-
"docker/setup-qemu-action@v3.7.0": {
158+
"docker/setup-buildx-action@v4.0.0": {
159+
"repo": "docker/setup-buildx-action",
160+
"version": "v4.0.0",
161+
"sha": "4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd"
162+
},
163+
"docker/setup-qemu-action@v3": {
159164
"repo": "docker/setup-qemu-action",
160-
"version": "v3.7.0",
165+
"version": "v3",
161166
"sha": "c7c53464625b32c7a7e944ae62b3e17d2b600130"
162167
},
163-
"erlef/setup-beam@v1": {
168+
"docker/setup-qemu-action@v4.0.0": {
169+
"repo": "docker/setup-qemu-action",
170+
"version": "v4.0.0",
171+
"sha": "ce360397dd3f832beb865e1373c09c0e9f86d70a"
172+
},
173+
"erlef/setup-beam@v1.21.0": {
164174
"repo": "erlef/setup-beam",
165-
"version": "v1.20.4",
166-
"sha": "dff508cca8ce57162e7aa6c4769a4f97c2fed638"
175+
"version": "v1.21.0",
176+
"sha": "3580539ceec3dc05b0ed51e9e10b08eb7a7c2bb4"
167177
},
168-
"github/codeql-action/upload-sarif@v3.32.4": {
178+
"github/codeql-action/upload-sarif@v4.32.6": {
169179
"repo": "github/codeql-action/upload-sarif",
170-
"version": "v3.32.4",
171-
"sha": "85b88275909735f5bc23196090e03d2eb148b3de"
180+
"version": "v4.32.6",
181+
"sha": "fb0994ef1c058010acf1efccff928b0a83b1ed54"
172182
},
173-
"github/gh-aw/actions/setup@v0.50.3": {
183+
"github/gh-aw/actions/setup@v0.56.2": {
174184
"repo": "github/gh-aw/actions/setup",
175-
"version": "v0.50.3",
176-
"sha": "b70143d20a8292a3180986fa71533fdb8acb79e3"
185+
"version": "v0.56.2",
186+
"sha": "f1073c5498ee46fec1530555a7c953445417c69b"
177187
},
178-
"github/stale-repos@v3.0.2": {
188+
"github/stale-repos@v9.0.2": {
179189
"repo": "github/stale-repos",
180-
"version": "v3.0.2",
181-
"sha": "a21e55567b83cf3c3f3f9085d3038dc6cee02598"
190+
"version": "v9.0.2",
191+
"sha": "f592689f914c623d9fb51a0372f15d05f9849b09"
182192
},
183193
"haskell-actions/setup@v2.10.3": {
184194
"repo": "haskell-actions/setup",
185195
"version": "v2.10.3",
186196
"sha": "9cd1b7bf3f36d5a3c3b17abc3545bfb5481912ea"
187197
},
188-
"oven-sh/setup-bun@v2.1.2": {
198+
"oven-sh/setup-bun@v2.1.3": {
189199
"repo": "oven-sh/setup-bun",
190-
"version": "v2.1.2",
191-
"sha": "3d267786b128fe76c2f16a390aa2448b815359f3"
200+
"version": "v2.1.3",
201+
"sha": "ecf28ddc73e819eb6fa29df6b34ef8921c743461"
192202
},
193-
"ruby/setup-ruby@v1.288.0": {
203+
"ruby/setup-ruby@v1.290.0": {
194204
"repo": "ruby/setup-ruby",
195-
"version": "v1.288.0",
196-
"sha": "09a7688d3b55cf0e976497ff046b70949eeaccfd"
205+
"version": "v1.290.0",
206+
"sha": "6ca151fd1bfcfd6fe0c4eb6837eb0584d0134a0c"
197207
},
198208
"super-linter/super-linter@v8.5.0": {
199209
"repo": "super-linter/super-linter",

0 commit comments

Comments
 (0)