Skip to content

Commit a0f5342

Browse files
ci(actions): Update workflow templates from organization template repository
Signed-off-by: GitHub <noreply@github.com>
1 parent 6344975 commit a0f5342

14 files changed

Lines changed: 215 additions & 121 deletions

.github/actions-lock.txt

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
# SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
22
# SPDX-License-Identifier: MIT
3-
25fc4c7e69e778e20bdc9eb0cc96367e block-merge-freeze.yml
4-
5a7b85f72877c560683ba523ffad11cc block-unconventional-commits.yml
5-
47319d4424574e468e7d0692fd0c61d3 command-compile.yml
3+
acad44f3e99b665897766ce90374dd03 block-merge-freeze.yml
4+
19ab9c47c8d96de93f37fab242c398cc block-unconventional-commits.yml
5+
7f15fef2fde87aae0eb8386ded489372 command-compile.yml
66
4cb6e4935d3f2bc1e3c99c77739118ca cypress.yml
77
e6351c608939c31ae1e32923aa82aa10 dependabot-approve-merge.yml
88
2581a67c5bcdcd570427e6d51db767d7 fixup.yml
9-
2a205b6cc57c26c31a18a7f41190f3e2 lint-eslint.yml
10-
660a12f14e32c1b2d24c418232d918da lint-php-cs.yml
11-
ee2b04d185b82fe7dd6fe6d83c6c7b45 lint-php.yml
12-
351799835db66dd8d20e324970490e96 lint-stylelint.yml
9+
dc0ae733f35c60274937c2647c027d46 lint-eslint.yml
10+
4b40dd0073e16f74dd04e6d49dcc043d lint-php-cs.yml
11+
cfb31e47b6e9ab65e76c89b028754a4e lint-php.yml
12+
ab3a506506b1d7c1cea9593ecfd84366 lint-stylelint.yml
1313
c965845a0def7b39d872e47e93dd1139 node.yml
14-
7e9fa275fffbfef58e6348a44750e2ec npm-audit-fix.yml
14+
0dc931ec237a235370e224282608b20e npm-audit-fix.yml
1515
d1821b8a816578070ed8fd018f321f6d pr-feedback.yml
16-
87bff1e6b8ae3ec6522b134a3d0f7a1c psalm.yml
17-
3975dc58817119d596a8f6ed190352ce reuse.yml
18-
9799b1a6a842b5c0076b76de651a0e0d sync-workflow-templates.yml
16+
6dc046dfbca5dc65d938265c518fcac4 psalm.yml
17+
2dbec18233063b42f4d8e03bbb43671c reuse.yml
18+
b47a9fe981a7435caea92db33f5ad121 sync-workflow-templates.yml
1919
22604c31b526de270a080eb19967a638 update-stable-titles.yml
20-
fcdb95d98ab64de64587191bbd71b2cb npm-build.yml
20+
ab958fa2b07234fceab6b6d836fb7f19 npm-build.yml
21+
0d4a72e82e345087f423a23cd06ab28c playwright.yml

.github/workflows/block-merge-freeze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ jobs:
5454

5555
- name: Run check
5656
if: ${{ env.server_ref != '' }}
57-
run: cat version.php | grep 'OC_VersionString' | grep -i -v 'RC'
57+
run: cat version.php | grep 'OC_VersionString' | grep -i -v -E '(\.0\.0 RC[3-9]|\.[1-9][0-9]* RC)'

.github/workflows/block-unconventional-commits.yml

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

2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
30+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3131
with:
3232
persist-credentials: false
3333

.github/workflows/command-compile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
key: git-repo
104104

105105
- name: Checkout ${{ needs.init.outputs.head_ref }}
106-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
106+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
107107
with:
108108
persist-credentials: false
109109
token: ${{ secrets.COMMAND_BOT_PAT }}
@@ -123,7 +123,7 @@ jobs:
123123
fallbackNpm: '^11.3'
124124

125125
- name: Set up node ${{ steps.package-engines-versions.outputs.nodeVersion }}
126-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
126+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
127127
with:
128128
node-version: ${{ steps.package-engines-versions.outputs.nodeVersion }}
129129
cache: npm

.github/workflows/lint-eslint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
src: ${{ steps.changes.outputs.src}}
2929

3030
steps:
31-
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
31+
- uses: dorny/paths-filter@ceb8a2b8f2d89434be7ff52d3de7ec3738c5cc9d # v4.0.3
3232
id: changes
3333
continue-on-error: true
3434
with:
@@ -56,7 +56,7 @@ jobs:
5656

5757
steps:
5858
- name: Checkout
59-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
59+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
6060
with:
6161
persist-credentials: false
6262

@@ -68,7 +68,7 @@ jobs:
6868
fallbackNpm: '^11.3'
6969

7070
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
71-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
71+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
7272
with:
7373
node-version: ${{ steps.versions.outputs.nodeVersion }}
7474

.github/workflows/lint-php-cs.yml

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

2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
28+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2929
with:
3030
persist-credentials: false
3131

.github/workflows/lint-php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
php-max: ${{ steps.versions.outputs.php-max }}
2626
steps:
2727
- name: Checkout app
28-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
28+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2929
with:
3030
persist-credentials: false
3131

@@ -44,7 +44,7 @@ jobs:
4444

4545
steps:
4646
- name: Checkout
47-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
47+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4848
with:
4949
persist-credentials: false
5050

.github/workflows/lint-stylelint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
28+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2929
with:
3030
persist-credentials: false
3131

@@ -37,7 +37,7 @@ jobs:
3737
fallbackNpm: '^11.3'
3838

3939
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
40-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
40+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
4141
with:
4242
node-version: ${{ steps.versions.outputs.nodeVersion }}
4343

.github/workflows/npm-audit-fix.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
matrix:
2727
branches:
2828
- ${{ github.event.repository.default_branch }}
29+
- 'stable35'
2930
- 'stable34'
3031
- 'stable33'
3132
- 'stable32'
@@ -35,7 +36,7 @@ jobs:
3536
steps:
3637
- name: Checkout
3738
id: checkout
38-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
39+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3940
with:
4041
persist-credentials: false
4142
ref: ${{ matrix.branches }}
@@ -49,7 +50,7 @@ jobs:
4950
fallbackNpm: '^11.3'
5051

5152
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
52-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
53+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
5354
with:
5455
node-version: ${{ steps.versions.outputs.nodeVersion }}
5556

.github/workflows/npm-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
src: ${{ steps.changes.outputs.src}}
2929

3030
steps:
31-
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
31+
- uses: dorny/paths-filter@ceb8a2b8f2d89434be7ff52d3de7ec3738c5cc9d # v4.0.3
3232
id: changes
3333
continue-on-error: true
3434
with:
@@ -53,7 +53,7 @@ jobs:
5353
name: NPM build
5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
56+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
5757
with:
5858
persist-credentials: false
5959

@@ -65,7 +65,7 @@ jobs:
6565
fallbackNpm: '^11.3'
6666

6767
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
68-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
68+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
6969
with:
7070
node-version: ${{ steps.versions.outputs.nodeVersion }}
7171

0 commit comments

Comments
 (0)