Skip to content

Commit 210aa7d

Browse files
- Update all non-major dependencies with digest and pinDigest
1 parent 21c9fd6 commit 210aa7d

11 files changed

Lines changed: 592 additions & 595 deletions

File tree

.github/workflows/check.js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 # https://github.com/actions/checkout
22+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 # https://github.com/actions/checkout
2323

2424
- name: Cache dependencies
25-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 # https://github.com/actions/cache
25+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 # https://github.com/actions/cache
2626
with:
2727
path: node_modules
2828
key: ${{ runner.os }}-npm-dependencies-${{ hashFiles('package.lock') }}
@@ -31,7 +31,7 @@ jobs:
3131
- name: Set up node
3232
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 # https://github.com/actions/setup-node
3333
with:
34-
node-version: 22
34+
node-version: 22.20.0
3535

3636
- name: Instal npm dependencies
3737
run: npm clean-install

.github/workflows/check.php.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
env:
2222
# renovate: datasource=github-releases depName=php packageName=containerbase/php-prebuild
23-
PHP_VERSION: 8.4.8
23+
PHP_VERSION: 8.4.13
2424
services:
2525
postgres:
2626
image: postgres:16.3-alpine3.18@sha256:64e18e8fb3e9c9aac89ac590c5dd8306b862478404f76cd9b5f7720d012b4c47 # https://hub.docker.com/_/postgres
@@ -38,20 +38,20 @@ jobs:
3838
- 5432:5432
3939

4040
steps:
41-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 # https://github.com/actions/checkout
41+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 # https://github.com/actions/checkout
4242

4343
- name: Validate composer.json and composer.lock
4444
run: composer validate
4545

4646
- name: Cache dependencies
47-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 # https://github.com/actions/cache
47+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 # https://github.com/actions/cache
4848
with:
4949
path: vendor
5050
key: ${{ runner.os }}-composer-dependencies-${{ hashFiles('composer.lock') }}
5151
restore-keys: ${{ runner.os }}-composer-dependencies
5252

5353
- name: Setup PHP
54-
uses: shivammathur/setup-php@0f7f1d08e3e32076e51cae65eb0b0c871405b16e # 2.34.1 # https://github.com/shivammathur/setup-php
54+
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # 2.35.5 # https://github.com/shivammathur/setup-php
5555
with:
5656
php-version: ${{ env.PHP_VERSION }}
5757
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, pdo_pgsql, intl

.github/workflows/deploy-to-beta.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: echo "BRANCH_NAME=$GITHUB_REF_NAME" >> $GITHUB_ENV
2525

2626
- name: checkout
27-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
2828
with:
2929
fetch-depth: 0
3030
ref: ${{ env.BRANCH_NAME }}
@@ -42,7 +42,7 @@ jobs:
4242
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
4343

4444
- name: login to GitHub Container Registry
45-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
45+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
4646
with:
4747
registry: ${{ env.DOCKER_REGISTRY }}
4848
username: ${{ env.DOCKER_REGISTRY_USER_NAME }}
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Docker meta
5555
id: meta
56-
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
56+
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
5757
with:
5858
images: ${{ env.DOCKER_IMAGE_NAME }}
5959
tags: |

.github/workflows/deploy-to-prod.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: echo "BRANCH_NAME=$GITHUB_REF_NAME" >> $GITHUB_ENV
2828

2929
- name: checkout
30-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
3131
with:
3232
fetch-depth: 0
3333
ref: ${{ env.BRANCH_NAME }}
@@ -45,7 +45,7 @@ jobs:
4545
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
4646

4747
- name: login to GitHub Container Registry
48-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
48+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
4949
with:
5050
registry: ${{ env.DOCKER_REGISTRY }}
5151
username: ${{ env.DOCKER_REGISTRY_USER_NAME }}
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: Docker meta
5858
id: meta
59-
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
59+
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
6060
with:
6161
images: ${{ env.DOCKER_IMAGE_NAME }}
6262
tags: |

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,26 @@
1111
"ext-intl": "*",
1212
"ext-pdo": "*",
1313
"codezero/laravel-unique-translation": "^4.3.1",
14-
"filament/filament": "^3.3.29",
15-
"filament/spatie-laravel-translatable-plugin": "^3.3.30",
16-
"guzzlehttp/guzzle": "^7.9.3",
14+
"filament/filament": "^3.3.42",
15+
"filament/spatie-laravel-translatable-plugin": "^3.3.42",
16+
"guzzlehttp/guzzle": "^7.10.0",
1717
"intervention/image-laravel": "^1.5.6",
1818
"josiasmontag/laravel-recaptchav3": "^1.0.4",
19-
"laravel/framework": "^12.19.3",
20-
"laravel/sanctum": "^4.1.1",
19+
"laravel/framework": "^12.32.5",
20+
"laravel/sanctum": "^4.1.2",
2121
"laravel/tinker": "^2.10.1",
2222
"mvenghaus/filament-plugin-translatable-inline": "^3.0.8",
23-
"nesbot/carbon": "^3.10.1",
23+
"nesbot/carbon": "^3.10.3",
2424
"opgginc/codezero-laravel-localized-routes": "^5.1",
25-
"sentry/sentry-laravel": "^4.15.1"
25+
"sentry/sentry-laravel": "^4.15.3"
2626
},
2727
"require-dev": {
2828
"blumilksoftware/codestyle": "^4.1.0",
2929
"fakerphp/faker": "^1.24.1",
3030
"mockery/mockery": "^1.6.12",
3131
"nunomaduro/collision": "^8.8.2",
32-
"larastan/larastan": "^3.5.0",
33-
"phpunit/phpunit": "^12.2.5",
32+
"larastan/larastan": "^3.7.2",
33+
"phpunit/phpunit": "^12.2.9",
3434
"spatie/laravel-ignition": "^2.9.1"
3535
},
3636
"autoload": {

0 commit comments

Comments
 (0)