Browse Source

ci: Try to pin images

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/53069/head
Joas Schilling 7 months ago
parent
commit
d22a4cab90
No known key found for this signature in database GPG Key ID: F72FA5B49FFA96B0
  1. 10
      .github/workflows/phpunit-object-store-primary.yml

10
.github/workflows/phpunit-object-store-primary.yml

@ -6,6 +6,9 @@ on:
schedule: schedule:
- cron: "15 2 * * *" - cron: "15 2 * * *"
permissions:
contents: read
concurrency: concurrency:
group: phpunit-object-store-primary-${{ github.head_ref || github.run_id }} group: phpunit-object-store-primary-${{ github.head_ref || github.run_id }}
cancel-in-progress: true cancel-in-progress: true
@ -54,13 +57,13 @@ jobs:
services: services:
cache: cache:
image: ghcr.io/nextcloud/continuous-integration-redis:latest
image: ghcr.io/nextcloud/continuous-integration-redis:latest # zizmor: ignore[unpinned-images]
ports: ports:
- 6379:6379/tcp - 6379:6379/tcp
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3 options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
minio: minio:
image: bitnami/minio
image: bitnami/minio@sha256:50cec18ac4184af4671a78aedd5554942c8ae105d51a465fa82037949046da01 # v2025.4.22
env: env:
MINIO_ROOT_USER: nextcloud MINIO_ROOT_USER: nextcloud
MINIO_ROOT_PASSWORD: bWluaW8tc2VjcmV0LWtleS1uZXh0Y2xvdWQ= MINIO_ROOT_PASSWORD: bWluaW8tc2VjcmV0LWtleS1uZXh0Y2xvdWQ=
@ -70,8 +73,9 @@ jobs:
steps: steps:
- name: Checkout server - name: Checkout server
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with: with:
persist-credentials: false
submodules: true submodules: true
- name: Set up php ${{ matrix.php-versions }} - name: Set up php ${{ matrix.php-versions }}

Loading…
Cancel
Save