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
26 changes: 13 additions & 13 deletions .github/workflows/build-docker-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
gha-runner: ubuntu-24.04-arm
runs-on: ${{ matrix.gha-runner }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
# Don't download unnecessary data:
fetch-depth: 0
Expand All @@ -54,7 +54,7 @@ jobs:
sha: ${{ github.event.pull_request.head.sha || github.sha }}

- name: Download built frontend
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: frontend
path: ./frontend/build
Expand All @@ -65,36 +65,36 @@ jobs:
# impossible to push to GHCR. See https://github.com/macbre/push-to-ghcr/issues/12
- name: Lowercase image registry and owner
id: image_registry_case
uses: ASzc/change-string-case-action@v6
uses: ASzc/change-string-case-action@v8
with:
string: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}

# Build and publish Docker container image
- name: Get Docker metadata
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ steps.image_registry_case.outputs.lowercase }}
tags: |
type=sha # this sha doesn't appear to correspond to the git sha

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
with:
install: true
driver: docker-container # Ensures proper driver setup

- name: Log in to GitHub container registry
if: env.PUSH_IMAGE == 'true'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push by digest
id: build
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: Dockerfile
Expand All @@ -119,7 +119,7 @@ jobs:
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV

- name: Upload digest
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: digests-${{ env.PLATFORM_PAIR }}
path: /tmp/digests/*
Expand All @@ -135,7 +135,7 @@ jobs:
- build-ctr-img
steps:
- name: Download digests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: /tmp/digests
pattern: digests-*
Expand All @@ -145,14 +145,14 @@ jobs:
# impossible to push to GHCR. See https://github.com/macbre/push-to-ghcr/issues/12
- name: Lowercase image registry and owner
id: image_registry_case
uses: ASzc/change-string-case-action@v6
uses: ASzc/change-string-case-action@v8
with:
string: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}

# Build and publish Docker container image
- name: Get Docker metadata
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
env:
DOCKER_METADATA_PR_HEAD_SHA: true
IS_MAIN_BRANCH: ${{ github.ref == format('refs/heads/{0}', env.MAIN_BRANCH) }}
Expand All @@ -169,11 +169,11 @@ jobs:
type=sha,priority=100

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log in to GitHub Container Registry
if: env.PUSH_IMAGE == 'true'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
# This repo has tons of cruft in its history, so we try to only fetch files we actually need:
fetch-depth: 0
filter: 'blob:none'

- name: Use cached ~/.npm
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ matrix.variant }}-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -44,7 +44,7 @@ jobs:
CI=false npm run build

- name: Upload build output
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: frontend
path: ./frontend/build
4 changes: 2 additions & 2 deletions .github/workflows/deploy-frontend-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Wait for frontend to build
id: wait-build-frontend
Expand All @@ -50,7 +50,7 @@ jobs:
sha: ${{ github.event.pull_request.head.sha || github.sha }}

- name: Download built frontend
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: frontend
path: ./frontend/build/ui
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-uv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:

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

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -46,7 +46,7 @@ jobs:
shell: bash

- name: Install uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v7
with:
version: "latest"

Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
sha: ${{ github.event.pull_request.head.sha || github.sha }}

- name: Download built frontend
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: frontend
path: ./frontend/build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
sha: ${{ github.event.pull_request.head.sha || github.sha }}

- name: Download built frontend
uses: actions/download-artifact@v5
uses: actions/download-artifact@v8
with:
name: frontend
path: ./frontend/build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-submodules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v6

- name: Pull & update submodules recursively
run: |
Expand Down
Loading