Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
branches:
- dev
- master
- wait_next_API
tags:
- v*
pull_request:
Expand Down Expand Up @@ -44,10 +43,10 @@ jobs:

steps:
- name: Checkout repo from github
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6.0.3

- name: Install uv
uses: astral-sh/setup-uv@v8.0.0
uses: astral-sh/setup-uv@v8.2.0
with:
python-version: ${{ matrix.python }}
enable-cache: true
Expand Down Expand Up @@ -97,10 +96,10 @@ jobs:
analyze:
name: Analyze Python
if: github.event.pull_request.draft == false
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v6.0.3
- uses: github/codeql-action/init@v4
with:
languages: python
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/clean_workflow_runs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Delete old workflow runs
uses: Mattraks/delete-workflow-runs@v2
uses: Mattraks/delete-workflow-runs@v2.1.0
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clear cache
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
console.log("About to clear")
Expand Down
Loading