From 19515038cac0746018bb13f280b75c713852e872 Mon Sep 17 00:00:00 2001 From: Felix Brucker Date: Fri, 1 Mar 2024 17:30:05 +0700 Subject: [PATCH] Upgrade gha --- .github/dependabot.yml | 13 ++++++++----- .github/workflows/push.yml | 6 +++--- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 04a99f5..563cc5c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,10 @@ version: 2 updates: -- package-ecosystem: pip - directory: "/" - schedule: - interval: weekly - open-pull-requests-limit: 99 + - package-ecosystem: pip + directory: "/" + schedule: + interval: weekly + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index c9d5d8f..2884595 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -6,14 +6,14 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: '3.10' architecture: 'x64' - name: Cache dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}