Skip to content

Commit

Permalink
update dependency action (#1260)
Browse files Browse the repository at this point in the history
The action that generates the PR when we merge changes is failing because the dependent action for uploading the Word doc is deprecated.

Update it, and configure dependabot to tell us about these updates so this doesn't happen again.
  • Loading branch information
BillWagner authored Feb 4, 2025
1 parent 99f9b5d commit 4041a8a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
version: 2
updates:
- package-ecosystem: "github-actions" # Core GitHub Actions
directory: "/"
schedule:
interval: "weekly"
day: "wednesday"
open-pull-requests-limit: 10
- package-ecosystem: "nuget"
directory: "/tools" #tools.sln
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-on-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
shell: bash

- name: Upload Word artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: >
${{ steps.renumber-sections.outputs.status }} == 'success' &&
${{ steps.update-grammar.outputs.status }} == 'success' &&
Expand Down

0 comments on commit 4041a8a

Please sign in to comment.