Skip to content

Commit 1cb6a19

Browse files
authored
Merge branch 'master' into enh/handle-http-413
Signed-off-by: Matthieu Gallien <matthieu_gallien@yahoo.fr>
2 parents 09be2f7 + a517197 commit 1cb6a19

226 files changed

Lines changed: 19547 additions & 6575 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.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: "Check translations"
1+
name: Check translations
22

33
on:
44
pull_request:
5-
branches: [ master, stable-* ]
5+
types: [opened, synchronize, reopened]
66

77
# Declare default permissions as read only.
88
permissions: read-all
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3
15+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
1616
- name: Check German
1717
run: |
1818
[[ $(grep "Benötigt keine Übersetzung" translations/client_de.ts -c) -gt 0 ]] && exit 1 || exit 0

.github/workflows/clang-format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
build:
77
runs-on: ubuntu-22.04
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: cpp-linter/cpp-linter-action@v2.1.1
9+
- uses: actions/checkout@v4
10+
- uses: cpp-linter/cpp-linter-action@v2.7.2
1111
id: linter
1212
env:
1313
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/clang-tidy-review.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
name: clang-tidy-review
22

3-
# You can be more specific, but it currently only works on pull requests
4-
on: [pull_request]
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
56

67
jobs:
78
clang-tidy:
89
runs-on: ubuntu-22.04
910
steps:
10-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1112
with:
1213
fetch-depth: 2
1314
- name: Install clang-tidy

.github/workflows/command-rebase.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323

2424
steps:
2525
- name: Add reaction on start
26-
uses: peter-evans/create-or-update-comment@ca08ebd5dc95aa0cd97021e9708fcd6b87138c9b # v3.0.1
26+
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
2727
with:
2828
token: ${{ secrets.COMMAND_BOT_PAT }}
2929
repository: ${{ github.event.repository.full_name }}
3030
comment-id: ${{ github.event.comment.id }}
3131
reaction-type: "+1"
3232

3333
- name: Checkout the latest code
34-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
34+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3535
with:
3636
fetch-depth: 0
3737
token: ${{ secrets.COMMAND_BOT_PAT }}
@@ -42,7 +42,7 @@ jobs:
4242
GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
4343

4444
- name: Add reaction on failure
45-
uses: peter-evans/create-or-update-comment@ca08ebd5dc95aa0cd97021e9708fcd6b87138c9b # v3.0.1
45+
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
4646
if: failure()
4747
with:
4848
token: ${{ secrets.COMMAND_BOT_PAT }}

.github/workflows/fixup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: Block fixup and squash commits
77

88
on:
99
pull_request:
10-
types: [opened, ready_for_review, reopened, synchronize]
10+
types: [opened, synchronize, reopened]
1111

1212
permissions:
1313
contents: read

.github/workflows/generates_locales.yml

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

.github/workflows/macos-build-and-test.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,28 @@
11
name: macOS Build and Test
22
on:
3-
push:
4-
branches:
5-
- master
63
pull_request:
74
types: [opened, synchronize, reopened]
85
jobs:
96
build:
10-
name: Build
7+
name: macOS Build and Test
118
runs-on: macos-latest
129
env:
1310
CRAFT_TARGET: macos-64-clang
1411
CRAFT_MASTER_LOCATION: ${{ github.workspace }}/CraftMaster
1512
CRAFT_MASTER_CONFIG: ${{ github.workspace }}/craftmaster.ini
1613
steps:
17-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1815
with:
1916
fetch-depth: 1
2017

2118
- name: Restore cache
22-
uses: actions/cache@v2
19+
uses: actions/cache@v3
2320
with:
2421
path: ~/cache
2522
key: macos-latest-${{ env.CRAFT_TARGET }}
2623

2724
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v3
25+
uses: actions/setup-python@v5
2926
with:
3027
python-version: 3.9
3128

.github/workflows/needsinfo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
stale:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/stale@v3
10+
- uses: actions/stale@v9
1111
with:
1212
operations-per-run: 1500
1313
days-before-stale: 28
Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
name: QML Label component check
22
on:
3-
push:
4-
branches:
5-
- master
63
pull_request:
74
types: [opened, synchronize, reopened]
85
jobs:
96
build:
10-
name: Build
7+
name: QML Label component check
118
runs-on: ubuntu-latest
129
steps:
13-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1411
- name: Run label component count
1512
run: |
1613
MATCHESRESULT=$(find . -iname "*.qml" | xargs grep -r -e "^\s*Label\s*[{]" | wc -l | sed "s/ //g")
1714
echo "MATCHES=${MATCHESRESULT}" >> $GITHUB_ENV
1815
echo "EXPECTED_MATCHES=1" >> $GITHUB_ENV
1916
- name: Check label component use count
2017
if: env.MATCHES != env.EXPECTED_MATCHES
21-
uses: actions/github-script@v3
18+
uses: actions/github-script@v7
2219
with:
2320
script: |
2421
core.setFailed('Using QML Labels! Make sure to use EnforcedPlainTextLabel instead!')

.github/workflows/sonarcloud.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,22 @@
11
name: SonarCloud analysis
22
on:
3-
push:
4-
branches:
5-
- master
63
pull_request:
74
types: [opened, synchronize, reopened]
85
jobs:
96
build:
10-
name: Build
7+
name: SonarCloud analysis
118
runs-on: ubuntu-22.04
129
container: ghcr.io/nextcloud/continuous-integration-client:client-5.15-14
1310
env:
1411
SONAR_SERVER_URL: "https://sonarcloud.io"
1512
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory # Directory where build-wrapper output will be placed
1613
steps:
17-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1815
with:
1916
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2017

2118
- name: Restore cache
22-
uses: actions/cache@v2
19+
uses: actions/cache@v3
2320
with:
2421
path: /cache
2522
key: ${{ runner.os }}

0 commit comments

Comments
 (0)