diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 93b1675..957dfb4 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -9,11 +9,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v5.1.1 + uses: actions/setup-python@v6 with: python-version: '3.x' - name: Install dependencies @@ -27,10 +27,10 @@ jobs: needs: ci-tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: actions/setup-python@v5.1.1 + - uses: actions/setup-python@v6 with: python-version: '3.x' - name: Install dependencies diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3ca73f..78097bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,12 +17,12 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} cache: "pip" @@ -42,7 +42,7 @@ jobs: - name: Upload coverage report if: matrix.python-version == '3.11' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: coverage-report path: .coverage @@ -55,12 +55,12 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.11" cache: "pip" diff --git a/.github/workflows/dependabot-automerge.yml b/.github/workflows/dependabot-automerge.yml index 02a8498..376ce21 100644 --- a/.github/workflows/dependabot-automerge.yml +++ b/.github/workflows/dependabot-automerge.yml @@ -29,7 +29,7 @@ jobs: steps: - name: Get PR number id: pr - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const { data: pullRequests } = await github.rest.pulls.list({ diff --git a/.github/workflows/dependabot-notifications.yml b/.github/workflows/dependabot-notifications.yml index 768d56e..e67a0c1 100644 --- a/.github/workflows/dependabot-notifications.yml +++ b/.github/workflows/dependabot-notifications.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Get PR information id: pr-info - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const { data: pullRequests } = await github.rest.pulls.list({ @@ -89,7 +89,7 @@ jobs: steps: - name: Get PR information id: pr-info - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const { data: pullRequests } = await github.rest.pulls.list({