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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
name: Lint & Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
python-version: ["3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
POSTGRES_URL: "postgresql://iras:secret@localhost:5432/iras"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
name: Security Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
runs-on: ubuntu-latest
needs: unit
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
version: ${{ steps.parse.outputs.version }}
is_prerelease: ${{ steps.parse.outputs.is_prerelease }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Parse tag and verify pyproject.toml version
id: parse
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
--health-retries 10

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v5
with:
Expand All @@ -109,7 +109,7 @@ jobs:
outputs:
image_digest: ${{ steps.push.outputs.digest }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Log in to GHCR
uses: docker/login-action@v3
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v5
with:
Expand All @@ -196,7 +196,7 @@ jobs:
runs-on: ubuntu-latest
needs: [validate-version, docker, build-dist]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0 # full history for changelog

Expand Down
Loading