-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathgithub_actions_version_updater.yml
More file actions
32 lines (27 loc) · 928 Bytes
/
github_actions_version_updater.yml
File metadata and controls
32 lines (27 loc) · 928 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: GitHub Actions Version Updater
# Controls when the action will run.
on:
schedule:
# Automatically run on every Sunday
- cron: "0 0 * * 0"
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.RELEASE_TOKEN }}
- name: Run GitHub Actions Version Updater
uses: saadmk11/github-actions-version-updater@v0.9.0
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.RELEASE_TOKEN }}
pull_request_branch: "github-actions-updates"
pull_request_labels: "dependencies, automated"
commit_message: "fix(deps): update github action versions"
pull_request_title: "fix(deps): update github action versions"