Skip to content

Commit f799db7

Browse files
committed
ci: apply the action bumps the closed Dependabot PRs proposed
Force-pushing main during the v0.1.0 release left eight Dependabot PRs (#1-#8) with invalid base refs; Dependabot closed them and deleted their branches, then on the next scan refused to re-create them under its "already-proposed-and-closed" dedup rule. The PRs can't be revived (`gh pr reopen` rejects them because the branch is gone, and `@dependabot recreate` comments on closed PRs do nothing). Applying the bumps directly is the rebase outcome the user asked for. All four target tags verified to exist on disk: actions/checkout v5 -> v6 actions/upload-artifact v4 -> v7 softprops/action-gh-release v2 -> v3 azure/trusted-signing-action v0.5.1 -> v2 YAML validates. CI will run on this commit and confirm the v6/v7 checkout+upload still work; release.yml's signing path won't actually exercise v2 of trusted-signing-action until repo secrets are configured, but the version pin is current.
1 parent 6afbfce commit f799db7

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
with:
2727
persist-credentials: false
2828

@@ -82,14 +82,14 @@ jobs:
8282
8383
- name: Upload Pester results
8484
if: always()
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v7
8686
with:
8787
name: pester-results
8888
path: pester-results.xml
8989
if-no-files-found: warn
9090

9191
- name: Upload build artifacts
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v7
9393
with:
9494
name: claude-code-install-manager-unsigned
9595
path: |

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
steps:
5252
- name: Checkout
53-
uses: actions/checkout@v5
53+
uses: actions/checkout@v6
5454
with:
5555
ref: ${{ github.event.inputs.ref || github.ref }}
5656
persist-credentials: false
@@ -132,7 +132,7 @@ jobs:
132132

133133
- name: Sign with Azure Trusted Signing
134134
if: steps.signmode.outputs.mode == 'azure'
135-
uses: azure/trusted-signing-action@v0.5.1
135+
uses: azure/trusted-signing-action@v2
136136
with:
137137
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }}
138138
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }}
@@ -190,15 +190,15 @@ jobs:
190190
"name=$name" | Add-Content -Path $env:GITHUB_OUTPUT
191191
192192
- name: Upload artifacts to workflow run
193-
uses: actions/upload-artifact@v4
193+
uses: actions/upload-artifact@v7
194194
with:
195195
name: ${{ steps.zip.outputs.name }}
196196
path: ${{ steps.zip.outputs.zip }}
197197
if-no-files-found: error
198198

199199
- name: Create / update GitHub Release
200200
if: startsWith(github.ref, 'refs/tags/')
201-
uses: softprops/action-gh-release@v2
201+
uses: softprops/action-gh-release@v3
202202
with:
203203
tag_name: ${{ steps.ver.outputs.tag }}
204204
name: "Claude Code Install Manager ${{ steps.ver.outputs.version }}"

0 commit comments

Comments
 (0)