forked from ddolyniuk1/ComposeBuilderDotNet
-
Notifications
You must be signed in to change notification settings - Fork 4
32 lines (26 loc) · 954 Bytes
/
dependency-updates.yml
File metadata and controls
32 lines (26 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: 'Updater: Dependency Updates'
on:
schedule:
# Run every day at 8am UTC
- cron: '0 8 * * *'
# Allow manual triggering
workflow_dispatch:
# Required permissions for the action to work
permissions:
contents: write # Required to create branches and commits
pull-requests: write # Required to create pull requests
issues: write # Required to create and apply labels to pull requests
jobs:
update-dependencies:
runs-on: ubuntu-latest
steps:
# Checkout the repository with full history for rebasing
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0 # Full clone required for git operations (rebase, fetch)
# Run the dependency updater using the action from this repository
- name: Update dependencies
uses: aviationexam/Aviationexam.DependencyUpdater@0.7.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}