From 492455be5440c5a5aa5f5d6cbc96739f9b4d7737 Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 11 Feb 2025 10:49:44 -0500 Subject: [PATCH] Update dependency workflow implements gh actions updates --- .github/workflows/dependencies.yml | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 4a3a9bb2..6c8ef67e 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -14,20 +14,13 @@ jobs: contents: write pull-requests: write steps: - - uses: actions/create-github-app-token@v1 - id: app-token + - uses: actions/checkout@v4.2.2 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 @@ -41,12 +34,10 @@ jobs: - name: Run pip-compile run: pip-compile --upgrade - - name: Create Pull Request - uses: peter-evans/create-pull-request@v6.0.2 + - name: Run GitHub Actions Version Updater + uses: saadmk11/github-actions-version-updater@v0.8.1 with: - token: ${{ steps.app-token.outputs.token }} - base: development - branch: dependency-updates - delete-branch: true - title: Dependency Updates - commit-message: Dependency updates \ No newline at end of file + token: ${{ secrets.ACCESS_TOKEN }} + committer_username: 'p-galligan' + pull_request_branch: 'dependency-updates' + pull_request_title: 'Dependency Updates' \ No newline at end of file