Skip to content

Commit f570bfc

Browse files
committed
Merge branch 'master' into stable
2 parents d0c4d9c + 0168385 commit f570bfc

164 files changed

Lines changed: 3050 additions & 1772 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/codeql.yml

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

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v6
4040

4141
# Initializes the CodeQL tools for scanning.
4242
- name: Initialize CodeQL
43-
uses: github/codeql-action/init@v3
43+
uses: github/codeql-action/init@v4
4444
with:
4545
languages: ${{ matrix.language }}
4646
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -51,7 +51,7 @@ jobs:
5151
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5252
# If this step fails, then you should remove it and run the build manually (see below)
5353
- name: Autobuild
54-
uses: github/codeql-action/autobuild@v3
54+
uses: github/codeql-action/autobuild@v4
5555

5656
# ℹ️ Command-line programs to run using the OS shell.
5757
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -65,4 +65,4 @@ jobs:
6565
# make release
6666

6767
- name: Perform CodeQL Analysis
68-
uses: github/codeql-action/analyze@v3
68+
uses: github/codeql-action/analyze@v4

.github/workflows/dependency-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: 'Checkout Repository'
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v6
1919
- name: 'Dependency Review'
20-
uses: actions/dependency-review-action@v4
20+
uses: actions/dependency-review-action@v5

.github/workflows/floccus.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,22 @@ jobs:
3333

3434
steps:
3535
- name: Checkout floccus
36-
uses: actions/checkout@v2
36+
uses: actions/checkout@v6
3737
with:
3838
path: floccus
3939
ref: ${{ matrix.floccus-branch }}
4040
repository: floccusAddon/floccus
4141

4242
- name: Set up node ${{ matrix.node-version }}
43-
uses: actions/setup-node@v1
43+
uses: actions/setup-node@v6
4444
with:
4545
node-version: ${{ matrix.node-version }}
4646

4747
- name: Set up npm ${{ matrix.npm-version }}
4848
run: npm i -g npm@"${{ matrix.npm-version }}"
4949

5050
- name: Cache node modules
51-
uses: actions/cache@v4
51+
uses: actions/cache@v5
5252
env:
5353
cache-name: cache-node-modules
5454
with:
@@ -139,7 +139,7 @@ jobs:
139139
steps:
140140

141141
- name: Set up node ${{ matrix.node-version }}
142-
uses: actions/setup-node@v1
142+
uses: actions/setup-node@v6
143143
with:
144144
node-version: ${{ matrix.node-version }}
145145

@@ -154,7 +154,7 @@ jobs:
154154
path: ./
155155

156156
- name: Checkout bookmarks app
157-
uses: actions/checkout@v4
157+
uses: actions/checkout@v6
158158
with:
159159
path: ${{ env.APP_NAME }}
160160

.github/workflows/lint.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
name: php${{ matrix.php-versions }}
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v6
2121

2222
- name: Set up php ${{ matrix.php-versions }}
2323
uses: shivammathur/setup-php@v2
@@ -38,7 +38,7 @@ jobs:
3838
name: cs php${{ matrix.php-versions }}
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v2
41+
uses: actions/checkout@v6
4242

4343
- name: Set up php
4444
uses: shivammathur/setup-php@v2
@@ -61,17 +61,17 @@ jobs:
6161

6262
name: eslint node${{ matrix.node-version }}
6363
steps:
64-
- uses: actions/checkout@v2
64+
- uses: actions/checkout@v6
6565

6666
- name: Read package.json node and npm engines version
67-
uses: skjnldsv/read-package-engines-version-actions@v2.0
67+
uses: skjnldsv/read-package-engines-version-actions@v3
6868
id: versions
6969
with:
7070
fallbackNode: '^12'
7171
fallbackNpm: '^6'
7272

7373
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
74-
uses: actions/setup-node@v3
74+
uses: actions/setup-node@v6
7575
with:
7676
node-version: ${{ steps.versions.outputs.nodeVersion }}
7777

@@ -94,17 +94,17 @@ jobs:
9494

9595
name: stylelint node${{ matrix.node-version }}
9696
steps:
97-
- uses: actions/checkout@v2
97+
- uses: actions/checkout@v6
9898

9999
- name: Read package.json node and npm engines version
100-
uses: skjnldsv/read-package-engines-version-actions@v2.0
100+
uses: skjnldsv/read-package-engines-version-actions@v3
101101
id: versions
102102
with:
103103
fallbackNode: '^12'
104104
fallbackNpm: '^6'
105105

106106
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
107-
uses: actions/setup-node@v3
107+
uses: actions/setup-node@v6
108108
with:
109109
node-version: ${{ steps.versions.outputs.nodeVersion }}
110110

.github/workflows/node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
src: ${{ steps.changes.outputs.src}}
3535

3636
steps:
37-
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
37+
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
3838
id: changes
3939
continue-on-error: true
4040
with:
@@ -71,7 +71,7 @@ jobs:
7171
fallbackNpm: '^11.3'
7272

7373
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
74-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
74+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
7575
with:
7676
node-version: ${{ steps.versions.outputs.nodeVersion }}
7777

.github/workflows/phpunit-mariadb.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Get version matrix
3939
id: versions
40-
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
40+
uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2
4141

4242
changes:
4343
runs-on: ubuntu-latest-low
@@ -49,7 +49,7 @@ jobs:
4949
src: ${{ steps.changes.outputs.src}}
5050

5151
steps:
52-
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
52+
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
5353
id: changes
5454
continue-on-error: true
5555
with:
@@ -130,7 +130,7 @@ jobs:
130130
131131
- name: Check composer file existence
132132
id: check_composer
133-
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
133+
uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0
134134
with:
135135
files: apps/${{ env.APP_NAME }}/composer.json
136136

.github/workflows/phpunit-mysql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Get version matrix
3838
id: versions
39-
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
39+
uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2
4040
with:
4141
matrix: '{"mysql-versions": ["8.4"]}'
4242

@@ -50,7 +50,7 @@ jobs:
5050
src: ${{ steps.changes.outputs.src}}
5151

5252
steps:
53-
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
53+
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
5454
id: changes
5555
continue-on-error: true
5656
with:
@@ -128,7 +128,7 @@ jobs:
128128
129129
- name: Check composer file existence
130130
id: check_composer
131-
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
131+
uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0
132132
with:
133133
files: apps/${{ env.APP_NAME }}/composer.json
134134

.github/workflows/phpunit-pgsql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Get version matrix
3939
id: versions
40-
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
40+
uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2
4141

4242
changes:
4343
runs-on: ubuntu-latest-low
@@ -49,7 +49,7 @@ jobs:
4949
src: ${{ steps.changes.outputs.src }}
5050

5151
steps:
52-
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
52+
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
5353
id: changes
5454
continue-on-error: true
5555
with:
@@ -126,7 +126,7 @@ jobs:
126126

127127
- name: Check composer file existence
128128
id: check_composer
129-
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
129+
uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0
130130
with:
131131
files: apps/${{ env.APP_NAME }}/composer.json
132132

.github/workflows/phpunit-sqlite.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Get version matrix
3939
id: versions
40-
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
40+
uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2
4141

4242
changes:
4343
runs-on: ubuntu-latest-low
@@ -49,7 +49,7 @@ jobs:
4949
src: ${{ steps.changes.outputs.src}}
5050

5151
steps:
52-
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
52+
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
5353
id: changes
5454
continue-on-error: true
5555
with:
@@ -115,7 +115,7 @@ jobs:
115115

116116
- name: Check composer file existence
117117
id: check_composer
118-
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
118+
uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0
119119
with:
120120
files: apps/${{ env.APP_NAME }}/composer.json
121121

.github/workflows/psalm-matrix.yml

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

3737
- name: Get version matrix
3838
id: versions
39-
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
39+
uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2
4040

4141
- name: Check enforcement of minimum PHP version ${{ steps.versions.outputs.php-min }} in psalm.xml
4242
run: grep 'phpVersion="${{ steps.versions.outputs.php-min }}' psalm.xml

0 commit comments

Comments
 (0)