Skip to content

Commit 62a46aa

Browse files
authored
chore: upgrade all workflows from v0.67.0 to v0.68.0 (#3504)
## Summary Upgrades all 31 agentic workflows from `v0.67.0` to `v0.68.0`. ## Changes ### Compiler upgrade - All 31 `.lock.yml` files recompiled with `gh aw v0.68.0` - Updated `actions-lock.json`, `agentics-maintenance.yml`, agent config ### Remove deprecated `tools.serena` The v0.68.0 compiler rejects `serena` as an unknown tool name. Removed from 5 workflows: - `duplicate-code-detector.md` — was serena-only, replaced with `bash: true` - `go-fan.md` — removed tool + stale Serena memory/usage references from prompt - `smoke-copilot.md` — removed tool + Serena MCP test steps from prompt - `test-coverage-improver.md` — removed tool - `test-improver.md` — removed tool ### Security review - New action: `github/gh-aw-actions/setup` — first-party GitHub action for gh-aw setup, safe - No new secrets introduced - No new external network access
2 parents 44b24ed + 8a5cf1b commit 62a46aa

39 files changed

+6595
-5464
lines changed

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

Lines changed: 11 additions & 11 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.67.0/.github/aw/github-agentic-workflows.md
33+
- Configuration: https://github.com/github/gh-aw/blob/v0.68.0/.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.67.0/.github/aw/create-agentic-workflow.md
55+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.68.0/.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.67.0/.github/aw/update-agentic-workflow.md
65+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.68.0/.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.67.0/.github/aw/debug-agentic-workflow.md
75+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.68.0/.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.67.0/.github/aw/upgrade-agentic-workflows.md
85+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.68.0/.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.67.0/.github/aw/report.md
95+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.68.0/.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.67.0/.github/aw/create-shared-agentic-workflow.md
105+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.68.0/.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.67.0/.github/aw/dependabot.md
115+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.68.0/.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.67.0/.github/aw/test-coverage.md
125+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.68.0/.github/aw/test-coverage.md
126126

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

170170
## Important Notes
171171

172-
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.67.0/.github/aw/github-agentic-workflows.md for complete documentation
172+
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.68.0/.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
176176
- Follow security best practices: minimal permissions, explicit network access, no template injection
177-
- **Network configuration**: Use ecosystem identifiers (`node`, `python`, `go`, etc.) or explicit FQDNs in `network.allowed`. Bare shorthands like `npm` or `pypi` are **not** valid. See https://github.com/github/gh-aw/blob/v0.67.0/.github/aw/network.md for the full list of valid ecosystem identifiers and domain patterns.
177+
- **Network configuration**: Use ecosystem identifiers (`node`, `python`, `go`, etc.) or explicit FQDNs in `network.allowed`. Bare shorthands like `npm` or `pypi` are **not** valid. See https://github.com/github/gh-aw/blob/v0.68.0/.github/aw/network.md for the full list of valid ecosystem identifiers and domain patterns.
178178
- **Single-file output**: When creating a workflow, produce exactly **one** workflow `.md` file. Do not create separate documentation files (architecture docs, runbooks, usage guides, etc.). If documentation is needed, add a brief `## Usage` section inside the workflow file itself.

.github/aw/actions-lock.json

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -175,25 +175,15 @@
175175
"version": "v4.35.1",
176176
"sha": "0e9f55954318745b37b7933c693bc093f7336125"
177177
},
178-
"github/gh-aw-actions/setup-cli@v0.65.3": {
178+
"github/gh-aw-actions/setup-cli@v0.68.0": {
179179
"repo": "github/gh-aw-actions/setup-cli",
180-
"version": "v0.65.3",
181-
"sha": "6b4da262b8f7e0e253d1ae84f400a843b918a4ab"
182-
},
183-
"github/gh-aw-actions/setup-cli@v0.67.0": {
184-
"repo": "github/gh-aw-actions/setup-cli",
185-
"version": "v0.67.0",
186-
"sha": "cde65c546c2b0f6d3f3a9492a04e6687887c4fe8"
187-
},
188-
"github/gh-aw-actions/setup@v0.65.3": {
189-
"repo": "github/gh-aw-actions/setup",
190-
"version": "v0.65.3",
191-
"sha": "6b4da262b8f7e0e253d1ae84f400a843b918a4ab"
180+
"version": "v0.68.0",
181+
"sha": "0acfb4a691fe207cd8bc982ea5cb9d750d57a702"
192182
},
193-
"github/gh-aw-actions/setup@v0.67.0": {
183+
"github/gh-aw-actions/setup@v0.68.0": {
194184
"repo": "github/gh-aw-actions/setup",
195-
"version": "v0.67.0",
196-
"sha": "cde65c546c2b0f6d3f3a9492a04e6687887c4fe8"
185+
"version": "v0.68.0",
186+
"sha": "0acfb4a691fe207cd8bc982ea5cb9d750d57a702"
197187
},
198188
"github/gh-aw/actions/setup@v0.65.3": {
199189
"repo": "github/gh-aw/actions/setup",

.github/workflows/agentics-maintenance.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# \ /\ / (_) | | | | ( | | | | (_) \ V V /\__ \
1313
# \/ \/ \___/|_| |_|\_\|_| |_|\___/ \_/\_/ |___/
1414
#
15-
# This file was automatically generated by pkg/workflow/maintenance_workflow.go (v0.67.0). DO NOT EDIT.
15+
# This file was automatically generated by pkg/workflow/maintenance_workflow.go (v0.68.0). DO NOT EDIT.
1616
#
1717
# To regenerate this workflow, run:
1818
# gh aw compile
@@ -68,7 +68,7 @@ jobs:
6868
pull-requests: write
6969
steps:
7070
- name: Setup Scripts
71-
uses: github/gh-aw-actions/setup@cde65c546c2b0f6d3f3a9492a04e6687887c4fe8 # v0.67.0
71+
uses: github/gh-aw-actions/setup@0acfb4a691fe207cd8bc982ea5cb9d750d57a702 # v0.68.0
7272
with:
7373
destination: ${{ runner.temp }}/gh-aw/actions
7474

@@ -113,7 +113,7 @@ jobs:
113113
persist-credentials: false
114114

115115
- name: Setup Scripts
116-
uses: github/gh-aw-actions/setup@cde65c546c2b0f6d3f3a9492a04e6687887c4fe8 # v0.67.0
116+
uses: github/gh-aw-actions/setup@0acfb4a691fe207cd8bc982ea5cb9d750d57a702 # v0.68.0
117117
with:
118118
destination: ${{ runner.temp }}/gh-aw/actions
119119

@@ -128,9 +128,9 @@ jobs:
128128
await main();
129129
130130
- name: Install gh-aw
131-
uses: github/gh-aw-actions/setup-cli@cde65c546c2b0f6d3f3a9492a04e6687887c4fe8 # v0.67.0
131+
uses: github/gh-aw-actions/setup-cli@0acfb4a691fe207cd8bc982ea5cb9d750d57a702 # v0.68.0
132132
with:
133-
version: v0.67.0
133+
version: v0.68.0
134134

135135
- name: Run operation
136136
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
@@ -164,7 +164,7 @@ jobs:
164164
persist-credentials: false
165165

166166
- name: Setup Scripts
167-
uses: github/gh-aw-actions/setup@cde65c546c2b0f6d3f3a9492a04e6687887c4fe8 # v0.67.0
167+
uses: github/gh-aw-actions/setup@0acfb4a691fe207cd8bc982ea5cb9d750d57a702 # v0.68.0
168168
with:
169169
destination: ${{ runner.temp }}/gh-aw/actions
170170

@@ -204,7 +204,7 @@ jobs:
204204
persist-credentials: false
205205

206206
- name: Setup Scripts
207-
uses: github/gh-aw-actions/setup@cde65c546c2b0f6d3f3a9492a04e6687887c4fe8 # v0.67.0
207+
uses: github/gh-aw-actions/setup@0acfb4a691fe207cd8bc982ea5cb9d750d57a702 # v0.68.0
208208
with:
209209
destination: ${{ runner.temp }}/gh-aw/actions
210210

@@ -219,9 +219,9 @@ jobs:
219219
await main();
220220
221221
- name: Install gh-aw
222-
uses: github/gh-aw-actions/setup-cli@cde65c546c2b0f6d3f3a9492a04e6687887c4fe8 # v0.67.0
222+
uses: github/gh-aw-actions/setup-cli@0acfb4a691fe207cd8bc982ea5cb9d750d57a702 # v0.68.0
223223
with:
224-
version: v0.67.0
224+
version: v0.68.0
225225

226226
- name: Create missing labels
227227
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8

0 commit comments

Comments
 (0)