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
20 changes: 10 additions & 10 deletions .github/workflows/docker-build-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:

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

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

- name: Log in to the Container registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -47,7 +47,7 @@ jobs:
# Python Base Dev Image
- name: Extract metadata for Python base dev image
id: meta-python-base-dev
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_PREFIX }}/python-base-dev
tags: |
Expand All @@ -56,7 +56,7 @@ jobs:
type=raw,value=latest-${{ matrix.arch }},enable={{is_default_branch}}

- name: Build and push Python base dev image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: ./infra/docker/python_base
file: ./infra/docker/python_base/dev.Dockerfile
Expand All @@ -70,7 +70,7 @@ jobs:
# Python Base Prod Image
- name: Extract metadata for Python base prod image
id: meta-python-base-prod
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_PREFIX }}/python-base-prod
tags: |
Expand All @@ -79,7 +79,7 @@ jobs:
type=raw,value=latest-${{ matrix.arch }},enable={{is_default_branch}}

- name: Build and push Python base prod image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: ./infra/docker/python_base
file: ./infra/docker/python_base/prod.Dockerfile
Expand All @@ -100,7 +100,7 @@ jobs:

steps:
- name: Log in to the Container registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -109,7 +109,7 @@ jobs:
# Python Base Dev Manifest
- name: Extract metadata for Python base dev manifest
id: meta-python-base-dev
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_PREFIX }}/python-base-dev
tags: |
Expand All @@ -132,7 +132,7 @@ jobs:
# Python Base Prod Manifest
- name: Extract metadata for Python base prod manifest
id: meta-python-base-prod
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_PREFIX }}/python-base-prod
tags: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/docker-build-titus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,25 +39,25 @@ jobs:

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

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
with:
driver-opts: |
image=moby/buildkit:latest
network=host

- name: Log in to the Container registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata for ${{ matrix.name }} image
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_PREFIX }}/${{ matrix.name }}
tags: |
Expand All @@ -68,7 +68,7 @@ jobs:
type=raw,value=cache-${{ matrix.arch }}

- name: Build and push ${{ matrix.name }} image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
timeout-minutes: 30
with:
context: ${{ matrix.context }}
Expand Down Expand Up @@ -107,15 +107,15 @@ jobs:

steps:
- name: Log in to the Container registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata for manifest
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_PREFIX }}/titus-scanner
tags: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch all history for git info

Expand Down Expand Up @@ -99,10 +99,10 @@ jobs:
fi

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

- name: Log in to the Container registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -120,7 +120,7 @@ jobs:

- name: Extract metadata for ${{ matrix.service.name }} image
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_PREFIX }}/${{ matrix.service.name }}
tags: |
Expand All @@ -131,7 +131,7 @@ jobs:
type=raw,value=${{ github.ref_name }}-${{ env.ARCH }}

- name: Build and push ${{ matrix.service.name }} image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: ${{ matrix.service.context }}
file: ${{ matrix.service.dockerfile }}
Expand Down Expand Up @@ -172,15 +172,15 @@ jobs:

steps:
- name: Log in to the Container registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata for manifest
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_PREFIX }}/${{ matrix.service }}
tags: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v4

Expand All @@ -42,12 +42,12 @@ jobs:
uv run mkdocs build

- name: Setup Github pages
uses: actions/configure-pages@v4
uses: actions/configure-pages@v5

- name: Create Github pages artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: site

- name: Deploy documentation to Github pages
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
8 changes: 4 additions & 4 deletions .github/workflows/generate-api-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -61,12 +61,12 @@ jobs:
uv run mkdocs build

- name: Setup Github pages
uses: actions/configure-pages@v4
uses: actions/configure-pages@v5

- name: Create Github pages artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: site

- name: Deploy documentation to Github pages
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
2 changes: 1 addition & 1 deletion .github/workflows/image-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ jobs:
name: Check compose ↔ Helm image tags
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: ./k8s/scripts/check-image-sync.sh
2 changes: 1 addition & 1 deletion .github/workflows/vuln-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout source code for this repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run vulnerability scanner
uses: aquasecurity/trivy-action@0.34.2
Expand Down
Loading