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
2 changes: 1 addition & 1 deletion .github/workflows/bump_libraries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Read Python version from .python-version
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
- name: Install uv
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
lint:
runs-on: opensource-linux-8core
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Read Python version from .python-version
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
- name: Install uv
Expand All @@ -31,15 +31,15 @@ jobs:
shellcheck:
runs-on: opensource-linux-8core
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: ShellCheck
uses: ludeeus/action-shellcheck@master

test:
runs-on: opensource-linux-8core
needs: lint
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Read Python version from .python-version
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
- name: Install uv
Expand All @@ -64,7 +64,7 @@ jobs:
changelog:
runs-on: opensource-linux-8core
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- if: github.ref != 'refs/heads/main'
uses: dorny/paths-filter@v3
id: changes
Expand All @@ -82,7 +82,7 @@ jobs:
runs-on: opensource-linux-8core
needs: lint
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Read Python version from .python-version
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
- name: Install uv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 1

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
driver: docker
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Read Python version from .python-version
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
- name: Login to Quay.io
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
SHORT_SHA: ${{ needs.set-short-sha.outputs.short_sha }}
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set SHORT_SHA
run: echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: Login to Quay.io
Expand Down
Loading