Skip to content
Closed
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/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Initialize CodeQL
uses: github/codeql-action/init@v4.35.5
uses: github/codeql-action/init@v4.36.0
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v4.35.5
uses: github/codeql-action/autobuild@v4.36.0

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4.35.5
uses: github/codeql-action/analyze@v4.36.0
with:
category: '/language:${{ matrix.language }}'
2 changes: 1 addition & 1 deletion .github/workflows/main-pr-docker-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# `# syntax=docker/dockerfile:1`, `RUN --mount=type=cache,...`,
# and `RUN --mount=type=secret,...`. Without buildx, those parse
# as ordinary RUNs and break the build.
uses: docker/setup-buildx-action@v4.0.0
uses: docker/setup-buildx-action@v4.1.0

- name: Build images
# `docker compose build` invokes buildx per service. No GHA cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
# https://github.com/lowlighter/metrics/tree/master/source/plugins/pagespeed
- name: 'metrics: pagespeed'
uses: lowlighter/metrics@v3.34
uses: lowlighter/metrics@v4
with:
token: NOT_NEEDED
committer_branch: metrics
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4.0.0
uses: docker/setup-buildx-action@v4.1.0

- name: Log in to GitHub Container Registry
uses: docker/login-action@v4.1.0
uses: docker/login-action@v4.2.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v7.1.0
uses: docker/build-push-action@v7.2.0
with:
context: .
file: ./Dockerfile.app
Expand Down Expand Up @@ -63,17 +63,17 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4.0.0
uses: docker/setup-buildx-action@v4.1.0

- name: Log in to GitHub Container Registry
uses: docker/login-action@v4.1.0
uses: docker/login-action@v4.2.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push MIGRATE image
uses: docker/build-push-action@v7.1.0
uses: docker/build-push-action@v7.2.0
with:
context: .
file: ./Dockerfile.migrate
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/staging.docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4.0.0
uses: docker/setup-buildx-action@v4.1.0

- name: Log in to GitHub Container Registry
uses: docker/login-action@v4.1.0
uses: docker/login-action@v4.2.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push MIGRATE
uses: docker/build-push-action@v7.1.0
uses: docker/build-push-action@v7.2.0
with:
context: .
file: ./Dockerfile.migrate
Expand All @@ -75,17 +75,17 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4.0.0
uses: docker/setup-buildx-action@v4.1.0

- name: Log in to GitHub Container Registry
uses: docker/login-action@v4.1.0
uses: docker/login-action@v4.2.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push APP
uses: docker/build-push-action@v7.1.0
uses: docker/build-push-action@v7.2.0
with:
context: .
file: ./Dockerfile.app
Expand Down
Loading