Skip to content

Commit

Permalink
Add workflow version updater
Browse files Browse the repository at this point in the history
Signed-off-by: karim mdmirajul <[email protected]>
  • Loading branch information
karim20230 committed Aug 13, 2024
1 parent 585e413 commit 9ddea05
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/schedule-update-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# SPDX-FileCopyrightText: 2022-2024 TII (SSRC) and the Ghaf contributors
# SPDX-License-Identifier: Apache-2.0

name: GitHub Actions Version Updater
on:
workflow_dispatch:
schedule:
# Automatically run on every Sunday at 00:00 UTC.
- cron: '0 0 * * 0'

jobs:
build:
runs-on: ubuntu-22.04

steps:
- uses: actions/[email protected]
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.PAT }}

- name: Run GitHub Actions Version Updater
uses: saadmk11/[email protected]
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.PAT }}
pull_request_title: "Update GitHub Actions to Latest Version"

0 comments on commit 9ddea05

Please sign in to comment.