Skip to content

Commit

Permalink
Update dependency workflow
Browse files Browse the repository at this point in the history
Implements gh action updates
  • Loading branch information
p-galligan committed Feb 11, 2025
1 parent 3341f0e commit e4be9f6
Showing 1 changed file with 9 additions and 18 deletions.
27 changes: 9 additions & 18 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,13 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: actions/create-github-app-token@v1
id: app-token
- uses: actions/[email protected]
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}

- uses: actions/checkout@v4
with:
token: ${{ steps.app-token.outputs.token }}
token: ${{ secrets.ACCESS_TOKEN }}
ref: development
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5.4.0
with:
python-version: '3.10'
cache: pip
Expand All @@ -41,12 +34,10 @@ jobs:
- name: Run pip-compile
run: pip-compile --upgrade

- name: Create Pull Request
uses: peter-evans/[email protected]
- name: Run GitHub Actions Version Updater
uses: saadmk11/[email protected]
with:
token: ${{ steps.app-token.outputs.token }}
base: development
branch: dependency-updates
delete-branch: true
title: Dependency Updates
commit-message: Dependency updates
token: ${{ secrets.ACCESS_TOKEN }}
committer_username: 'p-galligan'
pull_request_branch: 'dependency-updates'
pull_request_title: 'Dependency Updates'

0 comments on commit e4be9f6

Please sign in to comment.