Skip to content

Commit 2692633

Browse files
Pin dependencies
1 parent 939e547 commit 2692633

12 files changed

+35
-35
lines changed

.github/workflows/php.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
run: |
3636
echo "key=$(date +'%Y-%U')" >> $GITHUB_ENV
3737
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3939

40-
- uses: gacts/run-and-post-run@v1
40+
- uses: gacts/run-and-post-run@d803f6920adc9a47eeac4cb6c93dbc2e2890c684 # v1
4141
id: post-run-command
4242
with:
4343
post: |
@@ -58,21 +58,21 @@ jobs:
5858
5959
- name: Setup cache environment
6060
id: extcache
61-
uses: shivammathur/cache-extensions@v1
61+
uses: shivammathur/cache-extensions@4595bea7d6630821b0a3a4894f816402faaf324c # v1
6262
with:
6363
php-version: ${{ matrix.php-version }}
6464
extensions: ${{ env.extensions }}
6565
key: ${{ env.key }}
6666

6767
- name: Cache extensions
68-
uses: actions/cache@v4
68+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
6969
with:
7070
path: ${{ steps.extcache.outputs.dir }}
7171
key: ${{ steps.extcache.outputs.key }}
7272
restore-keys: ${{ steps.extcache.outputs.key }}
7373

7474
- name: Setup PHP
75-
uses: shivammathur/setup-php@v2
75+
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2
7676
with:
7777
php-version: ${{ matrix.php-version }}
7878
coverage: xdebug
@@ -84,15 +84,15 @@ jobs:
8484

8585
- name: Cache Composer packages
8686
id: composer-cache
87-
uses: actions/cache@v4
87+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
8888
with:
8989
path: vendor
9090
key: ${{ runner.os }}-${{ matrix.php-version }}-vendor-${{ hashFiles('composer.json') }}
9191
restore-keys: |
9292
${{ runner.os }}-${{ matrix.php-version }}-vendor-
9393
- name: Cache test tools
9494
id: test-tools-cache
95-
uses: actions/cache@v4
95+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
9696
with:
9797
path: vendor-bin
9898
key: ${{ runner.os }}-${{ matrix.php-version }}-vendor-bin-${{ hashFiles('vendor-bin/*/composer.json') }}
@@ -159,7 +159,7 @@ jobs:
159159
run: vendor/bin/phpunit --testsuite integration
160160

161161
- name: Code Coverage
162-
uses: codecov/codecov-action@v5
162+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5
163163
with:
164164
token: ${{ secrets.CODECOV_TOKEN }}
165165
files: ./coverage.clover

.github/workflows/phpdoc-to-github-pages.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818
runs-on: "ubuntu-latest"
1919
steps:
2020
- name: "Checkout"
21-
uses: "actions/checkout@v5"
21+
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8" # v5
2222
- name: "Build"
23-
uses: "phpDocumentor/[email protected]"
23+
uses: "phpDocumentor/phpDocumentor@d49f1917eafdf48df9660a088e9221c2b1d3fb99" # v3.8.1
2424
with:
2525
target: "docs/build"
2626
- name: Setup Pages
27-
uses: actions/configure-pages@v5
27+
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
2828
- name: Upload artifact
29-
uses: actions/upload-pages-artifact@v4
29+
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4
3030
with:
3131
path: 'docs/build'
3232
- name: Deploy to GitHub Pages
3333
id: deployment
34-
uses: actions/deploy-pages@v4
34+
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4

.github/workflows/publish-otel-php-base-docker-image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ jobs:
2727
steps:
2828

2929
- name: check out the repo
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3131

3232
- name: Set up Docker Buildx
33-
uses: docker/setup-buildx-action@v3
33+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
3434

3535
- name: Login to GitHub Container Registry
36-
uses: docker/login-action@v3
36+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
3737
with:
3838
registry: ghcr.io
3939
username: ${{ github.repository_owner }}
4040
password: ${{ secrets.GITHUB_TOKEN }}
4141

4242
- name: Build and push ${{ matrix.php-version }} to ghcr.io
43-
uses: docker/build-push-action@v6
43+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
4444
if: github.ref != 'refs/heads/main'
4545
with:
4646
push: false
@@ -49,7 +49,7 @@ jobs:
4949
platforms: linux/amd64,linux/arm/v8,linux/arm64
5050

5151
- name: Build and push ${{ matrix.php-version }} to ghcr.io
52-
uses: docker/build-push-action@v6
52+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
5353
if: github.ref == 'refs/heads/main'
5454
with:
5555
push: true

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
shellcheck:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1717

1818
- name: Install shellcheck
1919
run: sudo apt update && sudo apt install --assume-yes shellcheck

.github/workflows/split-monorepo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: checkout
2020
run: git clone "$GITHUB_SERVER_URL/$GITHUB_REPOSITORY" "$GITHUB_WORKSPACE" && cd "$GITHUB_WORKSPACE" && git checkout $GITHUB_SHA
2121
- name: Split repositories
22-
uses: docker://jderusse/gitsplit:latest
22+
uses: docker://jderusse/gitsplit:latest@sha256:ca619e08d0608d7ab8067be02db13409ec63a0e241c6308be42593f0c0ac705d
2323
with:
2424
args: gitsplit
2525
env:

docker-compose.collector.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ services:
77
depends_on:
88
- collector
99
zipkin:
10-
image: openzipkin/zipkin-slim
10+
image: openzipkin/zipkin-slim@sha256:d951994017185bce1c859b62e13adf640e26c37e08b90ca2e4de2669dc1aad87
1111
ports:
1212
- 9411:9411
1313
jaeger:
14-
image: jaegertracing/all-in-one
14+
image: jaegertracing/all-in-one@sha256:c87fc1d9b22766284168abb2ac57ac2160dfc26484e4f965ff2dcc6b849b263a
1515
environment:
1616
COLLECTOR_ZIPKIN_HOST_PORT: 9412
1717
ports:
1818
- 9412:9412
1919
- 16686:16686
2020
collector:
21-
image: otel/opentelemetry-collector-contrib
21+
image: otel/opentelemetry-collector-contrib@sha256:4a951ff0a9772f4fa8e9c7a326434370301b98b2b813933468dcb54aa6a6b5e5
2222
command: ["--config=/etc/otel-collector-config.yml"]
2323
volumes:
2424
- ./files/collector/otel-collector-config.yml:/etc/otel-collector-config.yml

docker-compose.fiber-ffi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.8'
22
services:
33
web:
4-
image: nginx:alpine
4+
image: nginx:alpine@sha256:61e01287e546aac28a3f56839c136b31f590273f3b41187a36f46f6a03bbfe22
55
ports:
66
- '8080:80'
77
depends_on:

docker-compose.phpDocumentor.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
services:
22
phpdoc:
3-
image: phpdoc/phpdoc:3
3+
image: phpdoc/phpdoc:3@sha256:acc0755cc8d4bc39863fcf57cdda713f4d79e1d5db0f8e6cdfa87756a4f29bdd
44
volumes:
55
- ./:/data
66
preview:
7-
image: nginx:alpine
7+
image: nginx:alpine@sha256:61e01287e546aac28a3f56839c136b31f590273f3b41187a36f46f6a03bbfe22
88
ports:
99
- 8080:80
1010
volumes:

docker-compose.prometheus.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
version: '3.7'
22
services:
33
prometheus:
4-
image: prom/prometheus
4+
image: prom/prometheus@sha256:23031bfe0e74a13004252caaa74eccd0d62b6c6e7a04711d5b8bf5b7e113adc7
55
ports:
66
- 9090:9090
77
volumes:
88
- ./docker/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
99
redis:
10-
image: redis
10+
image: redis@sha256:4521b581dbddea6e7d81f8fe95ede93f5648aaa66a9dacd581611bf6fe7527bd
1111
ports:
1212
- 6379:6379
1313
web:
14-
image: nginx:alpine
14+
image: nginx:alpine@sha256:61e01287e546aac28a3f56839c136b31f590273f3b41187a36f46f6a03bbfe22
1515
ports:
1616
- 8080:80
1717
depends_on:

docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ services:
77
env_file:
88
- .env
99
zipkin:
10-
image: openzipkin/zipkin-slim
10+
image: openzipkin/zipkin-slim@sha256:d951994017185bce1c859b62e13adf640e26c37e08b90ca2e4de2669dc1aad87
1111
ports:
1212
- 9411:9411
1313
jaeger:
14-
image: jaegertracing/all-in-one
14+
image: jaegertracing/all-in-one@sha256:c87fc1d9b22766284168abb2ac57ac2160dfc26484e4f965ff2dcc6b849b263a
1515
environment:
1616
COLLECTOR_ZIPKIN_HOST_PORT: 9412
1717
ports:
1818
- 9412:9412
1919
- 16686:16686
2020
collector:
21-
image: otel/opentelemetry-collector-contrib
21+
image: otel/opentelemetry-collector-contrib@sha256:4a951ff0a9772f4fa8e9c7a326434370301b98b2b813933468dcb54aa6a6b5e5
2222
command: [ "--config=/etc/otel-collector-config.yml" ]
2323
volumes:
2424
- ./files/collector/otel-collector-config.yml:/etc/otel-collector-config.yml

0 commit comments

Comments
 (0)