Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,25 @@ jobs:
image: ['web', 'matomo']
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false

- name: Get short commit SHA
run: echo "SHORT_COMMIT_SHA=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_ENV

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0

- name: Login to Docker Registry
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
with:
registry: ${{ vars.ABC_DOCKER_REGISTRY }}
username: ${{ secrets.SVC_GH_ABCWEB_USERNAME }}
password: ${{ secrets.SVC_GH_ABCWEB_PWD }}

- name: Build and push image
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0
with:
build-args: GIT_COMMIT=${{ env.SHORT_COMMIT_SHA }}
cache-from: type=gha
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false

- name: Install PHP
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # 2.37.1
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2
with:
php-version: '8.5'
extensions: 'amqp, apcu, gd, intl, pcntl, pdo_mysql, pdo_pgsql, pdo_sqlite, redis'
Expand All @@ -51,12 +51,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false

- name: Install PHP
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # 2.37.1
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2
with:
php-version: '8.5'
extensions: 'amqp, apcu, gd, intl, pcntl, pdo_mysql, pdo_pgsql, pdo_sqlite, redis'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false

- name: Install PHP
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # 2.37.1
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2
with:
php-version: '8.5'
extensions: 'amqp, apcu, gd, intl, pcntl, pdo_mysql, pdo_pgsql, pdo_sqlite, redis'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
actions: read
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false

- name: Run zizmor 🌈
uses: zizmorcore/zizmor-action@5f14fd08f7cf1cb1609c1e344975f152c7ee938d # v0.5.6
uses: zizmorcore/zizmor-action@192e21d79ab29983730a13d1382995c2307fbcaa # v0.5.7
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ EOF
# Builders for AssetMapper. The binaries are arch-specific, so select them based on the build target (set by BuildKit)
# to avoid pulling linux-x64 binaries that only run through (failing) emulation on arm64 hosts (e.g. Apple Silicon).
ARG TARGETARCH
ARG SASS_VERSION=1.99.0
ARG SWC_VERSION=v1.15.30
ARG SASS_VERSION=1.101.0
ARG SWC_VERSION=v1.15.43

RUN <<-EOF
case "$TARGETARCH" in
Expand Down
48 changes: 24 additions & 24 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,29 @@
"php": "^8.5",
"ext-ctype": "*",
"ext-iconv": "*",
"api-platform/doctrine-orm": "^4.3.6",
"api-platform/symfony": "^4.3.6",
"api-platform/doctrine-orm": "^4.3.16",
"api-platform/symfony": "^4.3.16",
"cweagans/composer-patches": "^2.0.0",
"doctrine/dbal": "^4.4.3",
"doctrine/doctrine-bundle": "^3.2.2",
"doctrine/doctrine-bundle": "^3.2.4",
"doctrine/doctrine-migrations-bundle": "^4.0.0",
"doctrine/orm": "^3.6.7",
"doctrineencryptbundle/doctrine-encrypt-bundle": "^7.0.3",
"dragonmantank/cron-expression": "^3.6",
"endroid/qr-code-bundle": "^7.0.1",
"fortawesome/font-awesome": "^7.2.0",
"jfcherng/php-diff": "^7.0",
"league/commonmark": "^2.8",
"fortawesome/font-awesome": "^7.3.0",
"jfcherng/php-diff": "^7.0.1",
"league/commonmark": "^2.8.2",
"matomo/device-detector": "^6.5.1",
"nelmio/cors-bundle": "^2.6.1",
"nelmio/security-bundle": "^3.9",
"nikic/php-parser": "^5.7.0",
"nikic/php-parser": "^5.8.0",
"phpdocumentor/reflection-docblock": "^6.0.3",
"phpseclib/phpseclib": "^3.0.52",
"phpstan/phpdoc-parser": "^2.3.2",
"scheb/2fa-backup-code": "^8.5",
"scheb/2fa-bundle": "^8.5",
"scheb/2fa-totp": "^8.5",
"phpseclib/phpseclib": "^3.0.55",
"phpstan/phpdoc-parser": "^2.3.3",
"scheb/2fa-backup-code": "^8.6",
"scheb/2fa-bundle": "^8.6",
"scheb/2fa-totp": "^8.6",
"sensiolabs/typescript-bundle": "^0.2.2",
"symfony/amqp-messenger": "8.0.*",
"symfony/asset": "8.0.*",
Expand All @@ -41,7 +41,7 @@
"symfony/doctrine-messenger": "8.0.*",
"symfony/dotenv": "8.0.*",
"symfony/expression-language": "8.0.*",
"symfony/flex": "^2.10.0",
"symfony/flex": "^2.11.0",
"symfony/form": "8.0.*",
"symfony/framework-bundle": "8.0.*",
"symfony/http-client": "8.0.*",
Expand All @@ -64,13 +64,13 @@
"symfony/security-bundle": "8.0.*",
"symfony/security-csrf": "8.0.*",
"symfony/serializer": "8.0.*",
"symfony/stimulus-bundle": "^3.0.0",
"symfony/stimulus-bundle": "^3.2.0",
"symfony/string": "8.0.*",
"symfony/translation": "8.0.*",
"symfony/twig-bundle": "8.0.*",
"symfony/uid": "8.0.*",
"symfony/ux-calendar-link": "3.1.0",
"symfony/ux-live-component": "3.1.0",
"symfony/ux-calendar-link": "3.2.0",
"symfony/ux-live-component": "3.2.0",
"symfony/validator": "8.0.*",
"symfony/web-link": "8.0.*",
"symfony/workflow": "8.0.*",
Expand All @@ -80,7 +80,7 @@
"twbs/bootstrap": "^5.3.8",
"twig/extra-bundle": "^3.24.0",
"twig/intl-extra": "^3.26.0",
"twig/twig": "^3.27.0"
"twig/twig": "^3.28.0"
},
"config": {
"allow-plugins": {
Expand Down Expand Up @@ -170,23 +170,23 @@
"dama/doctrine-test-bundle": "^8.6",
"doctrine/doctrine-fixtures-bundle": "^4.3.1",
"fakerphp/faker": "^1.24.1",
"gewis/gewisphp-coding-standards": "2.0.1",
"gewis/gewisphp-coding-standards": "2.1.1",
"igor-php/igor-php": "^0.6.3",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.2.0",
"phpstan/phpstan": "^2.2.5",
"phpstan/phpstan-deprecation-rules": "^2.0.4",
"phpstan/phpstan-doctrine": "^2.0.22",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpstan/phpstan-doctrine": "^2.0.27",
"phpstan/phpstan-phpunit": "^2.0.18",
"phpstan/phpstan-strict-rules": "^2.0.11",
"phpstan/phpstan-symfony": "^2.0.18",
"phpunit/phpunit": "^13.1.13",
"phpstan/phpstan-symfony": "^2.0.20",
"phpunit/phpunit": "^13.1.14",
"psalm/plugin-phpunit": "^0.19.7",
"psalm/plugin-symfony": "^5.3.0",
"symfony/browser-kit": "8.0.*",
"symfony/css-selector": "8.0.*",
"symfony/debug-bundle": "8.0.*",
"symfony/maker-bundle": "^1.67.0",
"symfony/phpunit-bridge": "^8.0.8",
"symfony/phpunit-bridge": "^8.1.1",
"symfony/stopwatch": "8.0.*",
"symfony/web-profiler-bundle": "8.0.*",
"symplify/config-transformer": "^12.5.0",
Expand Down
Loading