From 2a0df53c6757bb3746c12e4e0c241ff9350a8c97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Marti=CC=81nez=20Bernardo?= Date: Wed, 20 May 2026 13:41:05 +0200 Subject: [PATCH] Remove update_deps.yml --- .github/workflows/update_deps.yml | 43 ------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/update_deps.yml diff --git a/.github/workflows/update_deps.yml b/.github/workflows/update_deps.yml deleted file mode 100644 index 15a3ac665..000000000 --- a/.github/workflows/update_deps.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: update-deps - -on: - schedule: - - cron: "0 10 * * *" # Run at 10 am every day - workflow_dispatch: - -jobs: - check: - runs-on: ubuntu-latest - environment: - name: protected-main-env - steps: - - name: Generate token - id: generate_token - uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6 - with: - app-id: ${{ secrets.GH_APP_ID }} - private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} - - - uses: actions/checkout@v3 - with: - token: ${{ steps.generate_token.outputs.token }} - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: 3.13 - - - name: Update Dependencies - run: | - pip install poetry - poetry update - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 - with: - token: ${{ steps.generate_token.outputs.token }} - commit-message: update dependencies - title: Update Dependencies - body: | - Autogenerated PR to update all deps to latest versions - branch: update-dependencies