Skip to content

Commit adf6ade

Browse files
authored
Merge pull request #1645 from Hack23/copilot/fix-news-government-propositions-failure
Fix transient copilot engine failure — gh-aw housekeeping updates
2 parents 350b9f0 + 5c00dc3 commit adf6ade

2 files changed

Lines changed: 28 additions & 18 deletions

File tree

.github/aw/actions-lock.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
"version": "v8",
1111
"sha": "70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3"
1212
},
13+
"actions/download-artifact@v8.0.1": {
14+
"repo": "actions/download-artifact",
15+
"version": "v8.0.1",
16+
"sha": "3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c"
17+
},
1318
"actions/github-script@v8": {
1419
"repo": "actions/github-script",
1520
"version": "v8",
@@ -25,6 +30,11 @@
2530
"version": "v7",
2631
"sha": "bbbca2ddaa5d8feaa63e36b76fdaad77386f024f"
2732
},
33+
"github/gh-aw-actions/setup-cli@v0.67.4": {
34+
"repo": "github/gh-aw-actions/setup-cli",
35+
"version": "v0.67.4",
36+
"sha": "9d6ae06250fc0ec536a0e5f35de313b35bad7246"
37+
},
2838
"github/gh-aw-actions/setup@v0.67.4": {
2939
"repo": "github/gh-aw-actions/setup",
3040
"version": "v0.67.4",

.github/workflows/agentics-maintenance.yml

Lines changed: 18 additions & 18 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.1). DO NOT EDIT.
15+
# This file was automatically generated by pkg/workflow/maintenance_workflow.go (v0.67.4). DO NOT EDIT.
1616
#
1717
# To regenerate this workflow, run:
1818
# gh aw compile
@@ -68,12 +68,12 @@ jobs:
6868
pull-requests: write
6969
steps:
7070
- name: Setup Scripts
71-
uses: github/gh-aw-actions/setup@80471a493be8c528dd27daf73cd644242a7965e0 # v0.67.1
71+
uses: github/gh-aw-actions/setup@9d6ae06250fc0ec536a0e5f35de313b35bad7246 # v0.67.4
7272
with:
7373
destination: ${{ runner.temp }}/gh-aw/actions
7474

7575
- name: Close expired discussions
76-
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
76+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
7777
with:
7878
script: |
7979
const { setupGlobals } = require('${{ runner.temp }}/gh-aw/actions/setup_globals.cjs');
@@ -82,7 +82,7 @@ jobs:
8282
await main();
8383
8484
- name: Close expired issues
85-
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
85+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
8686
with:
8787
script: |
8888
const { setupGlobals } = require('${{ runner.temp }}/gh-aw/actions/setup_globals.cjs');
@@ -91,7 +91,7 @@ jobs:
9191
await main();
9292
9393
- name: Close expired pull requests
94-
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
94+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
9595
with:
9696
script: |
9797
const { setupGlobals } = require('${{ runner.temp }}/gh-aw/actions/setup_globals.cjs');
@@ -113,12 +113,12 @@ jobs:
113113
persist-credentials: false
114114

115115
- name: Setup Scripts
116-
uses: github/gh-aw-actions/setup@80471a493be8c528dd27daf73cd644242a7965e0 # v0.67.1
116+
uses: github/gh-aw-actions/setup@9d6ae06250fc0ec536a0e5f35de313b35bad7246 # v0.67.4
117117
with:
118118
destination: ${{ runner.temp }}/gh-aw/actions
119119

120120
- name: Check admin/maintainer permissions
121-
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
121+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
122122
with:
123123
github-token: ${{ secrets.GITHUB_TOKEN }}
124124
script: |
@@ -128,12 +128,12 @@ jobs:
128128
await main();
129129
130130
- name: Install gh-aw
131-
uses: github/gh-aw-actions/setup-cli@80471a493be8c528dd27daf73cd644242a7965e0 # v0.67.1
131+
uses: github/gh-aw-actions/setup-cli@9d6ae06250fc0ec536a0e5f35de313b35bad7246 # v0.67.4
132132
with:
133-
version: v0.67.1
133+
version: v0.67.4
134134

135135
- name: Run operation
136-
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
136+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
137137
env:
138138
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
139139
GH_AW_OPERATION: ${{ github.event.inputs.operation }}
@@ -164,12 +164,12 @@ jobs:
164164
persist-credentials: false
165165

166166
- name: Setup Scripts
167-
uses: github/gh-aw-actions/setup@80471a493be8c528dd27daf73cd644242a7965e0 # v0.67.1
167+
uses: github/gh-aw-actions/setup@9d6ae06250fc0ec536a0e5f35de313b35bad7246 # v0.67.4
168168
with:
169169
destination: ${{ runner.temp }}/gh-aw/actions
170170

171171
- name: Check admin/maintainer permissions
172-
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
172+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
173173
with:
174174
github-token: ${{ secrets.GITHUB_TOKEN }}
175175
script: |
@@ -179,7 +179,7 @@ jobs:
179179
await main();
180180
181181
- name: Apply Safe Outputs
182-
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
182+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
183183
env:
184184
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
185185
GH_AW_RUN_URL: ${{ github.event.inputs.run_url }}
@@ -204,12 +204,12 @@ jobs:
204204
persist-credentials: false
205205

206206
- name: Setup Scripts
207-
uses: github/gh-aw-actions/setup@80471a493be8c528dd27daf73cd644242a7965e0 # v0.67.1
207+
uses: github/gh-aw-actions/setup@9d6ae06250fc0ec536a0e5f35de313b35bad7246 # v0.67.4
208208
with:
209209
destination: ${{ runner.temp }}/gh-aw/actions
210210

211211
- name: Check admin/maintainer permissions
212-
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
212+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
213213
with:
214214
github-token: ${{ secrets.GITHUB_TOKEN }}
215215
script: |
@@ -219,12 +219,12 @@ jobs:
219219
await main();
220220
221221
- name: Install gh-aw
222-
uses: github/gh-aw-actions/setup-cli@80471a493be8c528dd27daf73cd644242a7965e0 # v0.67.1
222+
uses: github/gh-aw-actions/setup-cli@9d6ae06250fc0ec536a0e5f35de313b35bad7246 # v0.67.4
223223
with:
224-
version: v0.67.1
224+
version: v0.67.4
225225

226226
- name: Create missing labels
227-
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
227+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
228228
env:
229229
GH_AW_CMD_PREFIX: gh aw
230230
with:

0 commit comments

Comments
 (0)