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
6 changes: 3 additions & 3 deletions .github/workflows/alpha-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ jobs:
type=raw,value=alpha

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.11.1
uses: docker/setup-buildx-action@v3.12.0

- name: Login to GitHub Container Registry
uses: docker/login-action@v3.6.0
uses: docker/login-action@v3.7.0
with:
registry: ${{ secrets.DOCKER_REGISTRY_URL }}
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}

- name: Build and push alpha image
uses: docker/build-push-action@v6.18.0
uses: docker/build-push-action@v6.19.2
with:
context: .
platforms: linux/amd64 #,linux/arm64
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lintandformat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Cache uv folder
id: cache-uv
uses: actions/cache@v4.3.0
uses: actions/cache@v5.0.3
with:
path: ~/.cache/uv
key: ${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-uv-${{ hashFiles('requirements.txt', 'requirements-dev.txt') }}
Expand All @@ -36,7 +36,7 @@ jobs:

- name: Cache .ruff_cache folder
id: ruff_cache
uses: actions/cache@v4.3.0
uses: actions/cache@v5.0.3
with:
path: .ruff_cache
key: ruff_cache-${{ github.head_ref }}
Expand All @@ -48,7 +48,7 @@ jobs:

- name: Cache .mypy_cache folder
id: mypy_cache
uses: actions/cache@v4.3.0
uses: actions/cache@v5.0.3
with:
path: .mypy_cache
key: mypy_cache-${{ github.head_ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/preprod-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ jobs:
preprod.pr=${{ github.event.inputs.pr }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.11.1
uses: docker/setup-buildx-action@v3.12.0

- name: Login to GitHub Container Registry
uses: docker/login-action@v3.6.0
uses: docker/login-action@v3.7.0
with:
registry: ${{ secrets.DOCKER_REGISTRY_URL }}
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}

- name: Build and push preprod image
uses: docker/build-push-action@v6.18.0
uses: docker/build-push-action@v6.19.2
with:
context: .
platforms: linux/amd64 #,linux/arm64
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ jobs:
type=raw,value=latest

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.11.1
uses: docker/setup-buildx-action@v3.12.0

- name: Login to GitHub Container Registry
uses: docker/login-action@v3.6.0
uses: docker/login-action@v3.7.0
with:
registry: ${{ secrets.DOCKER_REGISTRY_URL }}
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}

- name: Build and push app
uses: docker/build-push-action@v6.18.0
uses: docker/build-push-action@v6.19.2
with:
context: .
platforms: linux/amd64 #,linux/arm64
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Cache uv folder
id: cache-uv
uses: actions/cache@v4.3.0
uses: actions/cache@v5.0.3
with:
path: ~/.cache/uv
key: ${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-uv-${{ hashFiles('requirements.txt', 'requirements-dev.txt') }}
Expand All @@ -77,7 +77,7 @@ jobs:

- name: Cache .pytest_cache folder
id: pytest_cache
uses: actions/cache@v4.3.0
uses: actions/cache@v5.0.3
with:
path: .pytest_cache
key: pytest_cache-${{ github.head_ref }}
Expand All @@ -92,6 +92,6 @@ jobs:
if: github.event_name == 'pull_request'

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5.5.1
uses: codecov/codecov-action@v5.5.2
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}