Github Action to Automatically Update Dependencies In Projects
Find a file
2025-11-11 11:41:46 +01:00
action.yml Changed references to point at registry.cloudless.no 2025-11-11 11:41:46 +01:00
license.txt Initial commit 2025-04-04 11:24:08 -05:00
README.md Changed references to point at registry.cloudless.no 2025-11-11 11:41:46 +01:00

Update Dependencies

A shared job to update all dependencies and make a pull request.

If you like this, we recommend making your own fork and customizing it to your needs.

Usage

To use this action, add the following to your workflow file:

name: Update Dependencies

on:
  schedule:
    - cron: '0 12 * * 6'  # Every Saturday at 12:00 PM UTC
  workflow_dispatch:

jobs:
  update-dependencies:
    runs-on: ubuntu-latest
    permissions:
      contents: write       # Push branches
      pull-requests: write  # Create PRs
    steps:
      - name: Run dependency update
        uses: actions/update-dependencies@main