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/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,14 @@ jobs:
with:
platforms: ${{ matrix.platform }}
- name: Login to DockerHub
uses: docker/login-action@v4
uses: docker/login-action@v4.1.0
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} # zizmor: ignore[secrets-outside-env] TODO: drop once super-linter ships zizmor >=1.24.0, then the allowlist in zizmor.yaml takes over
- name: Build
id: build
uses: docker/bake-action@v7
uses: docker/bake-action@v7.1.0
with:
pull: true
load: ${{ !fromJson(needs.prepare.outputs.push) }}
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to DockerHub
uses: docker/login-action@v4
uses: docker/login-action@v4.1.0
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/static.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
with:
platforms: ${{ matrix.platform }}
- name: Login to DockerHub
uses: docker/login-action@v4
uses: docker/login-action@v4.1.0
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
Expand All @@ -139,7 +139,7 @@ jobs:
REF: ${{ needs.prepare.outputs.ref }}
- name: Build
id: build
uses: docker/bake-action@v7
uses: docker/bake-action@v7.1.0
with:
pull: true
load: ${{ !fromJson(needs.prepare.outputs.push) || matrix.debug || matrix.mimalloc }}
Expand Down Expand Up @@ -287,14 +287,14 @@ jobs:
with:
platforms: ${{ matrix.platform }}
- name: Login to DockerHub
uses: docker/login-action@v4
uses: docker/login-action@v4.1.0
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} # zizmor: ignore[secrets-outside-env] TODO: drop once super-linter ships zizmor >=1.24.0, then the allowlist in zizmor.yaml takes over
- name: Build
id: build
uses: docker/bake-action@v7
uses: docker/bake-action@v7.1.0
with:
pull: true
load: ${{ !fromJson(needs.prepare.outputs.push) }}
Expand Down Expand Up @@ -399,7 +399,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to DockerHub
uses: docker/login-action@v4
uses: docker/login-action@v4.1.0
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ jobs:
- name: Run integrations tests
run: ./reload_test.sh
- name: Lint Go code
uses: golangci/golangci-lint-action@v9
uses: golangci/golangci-lint-action@v9.2.0
if: matrix.php-versions == '8.5'
with:
version: latest
- name: Lint Caddy module Go code
uses: golangci/golangci-lint-action@v9
uses: golangci/golangci-lint-action@v9.2.0
if: matrix.php-versions == '8.5'
with:
version: latest
Expand Down
Loading