Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci-container-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Login to Docker Hub
if: github.event.pull_request == null || github.event.pull_request.head.repo.fork == false
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-frontend-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Biome
uses: biomejs/setup-biome@v2
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
fi

- name: Render lint report to PR
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
if: always() && hashFiles('frontend/biome-report.md') != '' && github.event.pull_request.head.repo.fork == false
with:
header: frontend-lint-results
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,25 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7
with:
# Install a specific version of uv.
version: "0.6.14"
python-version: 3.12.9

- name: Cache tox environments
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .tox/
key: ${{ runner.os }}-tox-uv-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }}
restore-keys: |
${{ runner.os }}-tox-uv-

- name: Install tox with UV
run: uv pip install tox tox-uv
run: uv tool install tox --with tox-uv

- name: Run tox
id: tox
Expand All @@ -54,7 +54,7 @@ jobs:
bash .github/scripts/combine-test-reports.sh

- name: Render combined test report to PR
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
if: always() && hashFiles('combined-test-report.md') != '' && github.event.pull_request.head.repo.fork == false
with:
header: test-results
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docker-tools-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,23 @@ jobs:
run: echo "${{ toJSON(github.event.inputs) }}"

- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

# Set up QEMU for ARM64 emulation
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4
with:
platforms: linux/amd64,linux/arm64/v8

# Set up Docker Buildx for better caching and multi-arch builds
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
with:
platforms: linux/amd64,linux/arm64/v8

# Log in to Docker Hub
- name: Login to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:

# Build and push Docker image
- name: Build and push ${{ github.event.inputs.service_name }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: ${{ steps.build-config.outputs.context }}
file: ${{ steps.build-config.outputs.dockerfile }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/production-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,29 +37,29 @@ jobs:
steps:
- name: Checkout code for release
if: github.event_name == 'release'
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.release.tag_name }}

- name: Checkout code for branch
if: github.event_name != 'release'
uses: actions/checkout@v4
uses: actions/checkout@v6

# Set up QEMU for ARM64 emulation
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4
with:
platforms: linux/amd64,linux/arm64/v8

# Set up Docker Buildx for better caching and multi-arch builds
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
with:
platforms: linux/amd64,linux/arm64/v8

# Log in to Docker Hub
- name: Login to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

# Build and push using Docker Bake
- name: Build and push image
uses: docker/bake-action@v5
uses: docker/bake-action@v7
env:
VERSION: ${{ env.DOCKER_VERSION_TAG }}
with:
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
# Upload status for summary job
- name: Upload build status
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-status-${{ matrix.service_name }}
path: build-status/${{ matrix.service_name }}.json
Expand All @@ -137,7 +137,7 @@ jobs:
steps:
# Download all build status artifacts
- name: Download build statuses
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: build-status-*
merge-multiple: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/uv-lock-automation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7
with:
# Install a specific version of uv.
version: "0.6.14"
Expand Down