Skip to content

Commit 4041a8a

Browse files
authored
update dependency action (#1260)
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.
1 parent 99f9b5d commit 4041a8a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
version: 2
22
updates:
3+
- package-ecosystem: "github-actions" # Core GitHub Actions
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
day: "wednesday"
8+
open-pull-requests-limit: 10
39
- package-ecosystem: "nuget"
410
directory: "/tools" #tools.sln
511
schedule:

.github/workflows/update-on-merge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
shell: bash
7070

7171
- name: Upload Word artifact
72-
uses: actions/upload-artifact@v3
72+
uses: actions/upload-artifact@v4
7373
if: >
7474
${{ steps.renumber-sections.outputs.status }} == 'success' &&
7575
${{ steps.update-grammar.outputs.status }} == 'success' &&

0 commit comments

Comments
 (0)