Skip to content

Commit a1817d4

Browse files
author
Sebastian BURGIN-FIX (ext)
committed
wip
1 parent e366c05 commit a1817d4

10 files changed

Lines changed: 23 additions & 33 deletions

File tree

.github/workflows/assets_production.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212

1313
env:
1414
PHP_VERSION: 8.4
15-
NODE_VERSION: 22
15+
NODE_VERSION: 24
1616

1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v7
2020

2121
- name: Setup Node.js environment
22-
uses: actions/setup-node@v4
22+
uses: actions/setup-node@v6
2323
with:
2424
node-version: ${{ env.NODE_VERSION }}
2525

@@ -33,7 +33,7 @@ jobs:
3333
run: cp .env.ci .env
3434

3535
- name: Cache Composer dependencies
36-
uses: actions/cache@v4
36+
uses: actions/cache@v6
3737
with:
3838
path: ~/.composer/cache
3939
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -43,7 +43,7 @@ jobs:
4343
run: composer install --no-progress --prefer-dist --no-interaction --optimize-autoloader
4444

4545
- name: Cache node_modules
46-
uses: actions/cache@v4
46+
uses: actions/cache@v6
4747
with:
4848
path: ~/.npm
4949
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -76,7 +76,7 @@ jobs:
7676
name: production | deploy
7777

7878
steps:
79-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v7
8080
with:
8181
fetch-depth: '0'
8282

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
- name: Dependabot metadata
1515
id: metadata
16-
uses: dependabot/fetch-metadata@v2.2.0
16+
uses: dependabot/fetch-metadata@v3
1717
with:
1818
github-token: "${{ secrets.GITHUB_TOKEN }}"
1919

.github/workflows/larastan_pull_request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99

1010
env:
1111
PHP_VERSION: 8.4
12-
NODE_VERSION: 22
12+
NODE_VERSION: 24
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v7
1717

1818
- name: Setup PHP Environment
1919
uses: shivammathur/setup-php@v2
@@ -25,7 +25,7 @@ jobs:
2525
run: cp .env.ci .env
2626

2727
- name: Cache Composer Dependencies
28-
uses: actions/cache@v4
28+
uses: actions/cache@v6
2929
with:
3030
path: |
3131
~/.composer/cache/files
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Store Log Artifacts
4747
if: failure()
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v7
4949
with:
5050
name: Store report artifacts
5151
path: ./storage/logs

.github/workflows/pest_coverage_pull_request.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99

1010
env:
1111
PHP_VERSION: 8.4
12-
NODE_VERSION: 22
12+
NODE_VERSION: 24
1313
PEST_MIN_COVERAGE: 1
1414
PEST_MIN_TYPE_COVERAGE: 1
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v7
1919

2020
- name: Setup PHP Environment
2121
uses: shivammathur/setup-php@v2
@@ -28,7 +28,7 @@ jobs:
2828
run: cp .env.ci .env
2929

3030
- name: Cache Composer Dependencies
31-
uses: actions/cache@v4
31+
uses: actions/cache@v6
3232
with:
3333
path: |
3434
~/.composer/cache/files
@@ -55,7 +55,7 @@ jobs:
5555
php artisan migrate:fresh
5656
5757
- name: Setup Node.js Environment
58-
uses: actions/setup-node@v4
58+
uses: actions/setup-node@v6
5959
with:
6060
node-version: ${{ env.NODE_VERSION }}
6161
cache: 'npm'
@@ -77,7 +77,7 @@ jobs:
7777

7878
- name: Store Log Artifacts
7979
if: failure()
80-
uses: actions/upload-artifact@v4
80+
uses: actions/upload-artifact@v7
8181
with:
8282
name: Store report artifacts
8383
path: ./storage/logs

.github/workflows/pest_pull_request.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99

1010
env:
1111
PHP_VERSION: 8.4
12-
NODE_VERSION: 22
12+
NODE_VERSION: 24
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v7
1717

1818
- name: Setup PHP Environment
1919
uses: shivammathur/setup-php@v2
@@ -25,7 +25,7 @@ jobs:
2525
run: cp .env.ci .env
2626

2727
- name: Cache Composer Dependencies
28-
uses: actions/cache@v4
28+
uses: actions/cache@v6
2929
with:
3030
path: |
3131
~/.composer/cache/files
@@ -51,7 +51,7 @@ jobs:
5151
php artisan migrate:fresh
5252
5353
- name: Setup Node.js Environment
54-
uses: actions/setup-node@v4
54+
uses: actions/setup-node@v6
5555
with:
5656
node-version: ${{ env.NODE_VERSION }}
5757
cache: 'npm'
@@ -67,7 +67,7 @@ jobs:
6767

6868
- name: Store Log Artifacts
6969
if: failure()
70-
uses: actions/upload-artifact@v4
70+
uses: actions/upload-artifact@v7
7171
with:
7272
name: Store report artifacts
7373
path: ./storage/logs

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Release
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v7
1515
with:
1616
fetch-depth: '0'
1717
- name: Bump version and push tag

lang/de_CH.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"Last updated at: :date": "Zuletzt aktualisiert am: :date",
2929
"Legal": "Rechtliches",
3030
"Locations": "Standorte",
31-
"Next": "Weiter",
3231
"Media": "Medien",
3332
"Media intro": "Offizielle codebar-Logos für Presse und Partner.",
3433
"Logos": "Logos",

lang/en_CH.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"Last updated at: :date": "Last updated at: :date",
2727
"Legal": "Legal",
2828
"Locations": "Locations",
29-
"Next": "Next",
3029
"Media": "Media",
3130
"Media intro": "Download official codebar logos for press and partner use.",
3231
"Logos": "Logos",

resources/views/components/next.blade.php

Lines changed: 0 additions & 9 deletions
This file was deleted.

tests/Feature/Controllers/MatrixWellKnownTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
->assertOk()
1616
->assertExactJson([
1717
'm.homeserver' => ['base_url' => 'https://connect.codebar.ch'],
18+
'm.identity_server' => ['base_url' => 'https://vector.im'],
1819
])
1920
->assertHeader('Access-Control-Allow-Origin', '*');
2021
});

0 commit comments

Comments
 (0)