From ff59d70b1156f6e3ef49ac7b0b2f700eb938d6a6 Mon Sep 17 00:00:00 2001 From: nektos/act <+nektos/act@users.noreply.github.com> Date: Tue, 8 Jul 2025 17:50:48 +0000 Subject: [PATCH] chore: updated optimism, reth, node-reth --- .github/workflows/update-dependencies.yml | 28 ++++++++++++++--------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 80388ccf..ed2eb2cd 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -6,31 +6,37 @@ on: permissions: pull-requests: write + +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + jobs: update: name: update runs-on: ubuntu-latest steps: - - name: checkout - uses: actions/checkout@v4 + - uses: actions/checkout@v4 + - name: Load .env file - uses: aarcangeli/load-dotenv@v1 + uses: aarcangeli/load-dotenv@v1.1.0 with: - path: git_commit_message.env filenames: 'git_commit_message.env' - name: view env run: echo ${{ env.TITLE }} + # - name: build dependency updater # run: go build ./dependency_updater + # - name: build dependency updater # env: # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # run: ./dependency_updater --repo ~/node --commit true - # - name: create pull request - # uses: peter-evans/create-pull-request@v7 - # with: - # title: ${{ env.TITLE }} - # commit-message: ${{ env.TITLE }} - # body: ${{ env.DESC }} - # branch: update-dependencies \ No newline at end of file + + - name: create pull request + uses: peter-evans/create-pull-request@v7.0.8 + with: + title: ${{ env.TITLE }} + commit-message: ${{ env.TITLE }} + body: ${{ env.DESC }} + branch: update-dependencies \ No newline at end of file