From 6e51ff54b4e15a0fc3a4a2494e09ef268036b6c6 Mon Sep 17 00:00:00 2001 From: cmp0xff Date: Wed, 1 Oct 2025 15:04:24 +0200 Subject: [PATCH] chore(CI): update actions --- .github/setup/action.yaml | 2 +- .github/workflows/comment_commands.yml | 6 +++--- .github/workflows/optional.yml | 6 +++--- .github/workflows/test.yml | 6 +++--- pyproject.toml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/setup/action.yaml b/.github/setup/action.yaml index 34a6764ed..e3425ba28 100644 --- a/.github/setup/action.yaml +++ b/.github/setup/action.yaml @@ -13,7 +13,7 @@ runs: using: composite steps: - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ inputs.python-version }} diff --git a/.github/workflows/comment_commands.yml b/.github/workflows/comment_commands.yml index 8717585f1..ca9b1d3d5 100644 --- a/.github/workflows/comment_commands.yml +++ b/.github/workflows/comment_commands.yml @@ -25,7 +25,7 @@ jobs: # get the sha of the last commit to attach the results of the tests if: always() id: get-branch-info - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -39,7 +39,7 @@ jobs: core.setOutput('repository', pr.data.head.repo.full_name) - name: Checkout code on the correct branch - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # context is not aware which branch to checkout so it would otherwise # default to main (we also need repo name to source from the right user @@ -61,7 +61,7 @@ jobs: - name: Report results of the tests and publish # publish the results to a check run no matter the pass or fail if: always() - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/optional.yml b/.github/workflows/optional.yml index 4cbeccc03..4693dda14 100644 --- a/.github/workflows/optional.yml +++ b/.github/workflows/optional.yml @@ -12,7 +12,7 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Install project dependencies uses: ./.github/setup @@ -28,7 +28,7 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Install project dependencies uses: ./.github/setup @@ -44,7 +44,7 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Install project dependencies uses: ./.github/setup diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5f878a04..8fc7aab93 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: name: OS ${{ matrix.os }} - Python ${{ matrix.python-version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install project dependencies uses: ./.github/setup @@ -55,6 +55,6 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - uses: pre-commit/action@v3.0.0 + - uses: pre-commit/action@v3.0.1 diff --git a/pyproject.toml b/pyproject.toml index 32aafb808..a4b6430a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ pyarrow = ">=10.0.1" pytest = ">=8.4.2" pyright = ">=1.1.405" ty = ">=0.0.1a21" -pyrefly = ">=0.34.0" +pyrefly = ">=0.35.0" poethepoet = ">=0.16.5" loguru = ">=0.6.0" typing-extensions = ">=4.4.0"