Skip to content

Commit aadb513

Browse files
authored
CI: fix autorelease, add Dependabot (#818)
Resolves #817 As a bonus, it adds GitHub's Dependabot support to ensure we don't have to do this manually again: it'll just open a PR with the GitHub Action dependency bumped automagically every month.
1 parent 37d1189 commit aadb513

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Update schedule for GitHub Actions
2+
# from https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
3+
4+
version: 2
5+
updates:
6+
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
open-pull-requests-limit: 2
10+
labels:
11+
- "github-actions"
12+
schedule:
13+
# Check for updates to GitHub Actions every month
14+
interval: "monthly"
15+

.github/workflows/autorelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
run: sbt updateVersions
175175

176176
- name: Upload updated files
177-
uses: actions/upload-artifact@v3
177+
uses: actions/upload-artifact@v4
178178
with:
179179
name: updated-files
180180
path: |

0 commit comments

Comments
 (0)