From 73d0d9e19ad6fedf249c457e0ea70198173e49b5 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Sun, 31 Aug 2025 20:46:28 -0400 Subject: [PATCH] actions: remove auto update for now --- .../workflows/check-for-actions-updates.yml | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/check-for-actions-updates.yml diff --git a/.github/workflows/check-for-actions-updates.yml b/.github/workflows/check-for-actions-updates.yml deleted file mode 100644 index 07aefc4f..00000000 --- a/.github/workflows/check-for-actions-updates.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Check for outdated GitHub Actions -on: - schedule: - - cron: '37 20 * * 3' - workflow_dispatch: - -permissions: - actions: write - -jobs: - check-actions: - name: Check for GHA updates - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Run actions-up - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: npx actions-up --yes - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v6 # Use the action - with: - token: ${{ secrets.GITHUB_TOKEN }} - commit-message: "Automated changes" - title: "GitHub Actions versions neeeding updating" - body: "This PR was created automatically by a GitHub Action." - branch: "automated-pr-branch"