Skip to content
Open
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
48 changes: 24 additions & 24 deletions .github/workflows/analysis-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Analysis

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: '3.10'
Expand Down Expand Up @@ -73,14 +73,14 @@ jobs:
python-version: '3.11'

- name: Checkout server
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true
repository: nextcloud/server
ref: ${{ env.NEXTCLOUD_BRANCH }}

- name: Checkout Notifications
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: nextcloud/notifications
ref: ${{ env.NEXTCLOUD_BRANCH }}
Expand All @@ -98,7 +98,7 @@ jobs:
PHP_CLI_SERVER_WORKERS=2 php -S localhost:8080 &

- name: Checkout NcPyApi
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: nc_py_api

Expand All @@ -107,7 +107,7 @@ jobs:
run: python3 -m pip -v install ".[app,dev-min]"

- name: Checkout AppAPI
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: apps/app_api
repository: nextcloud/app_api
Expand Down Expand Up @@ -186,28 +186,28 @@ jobs:
python-version: "3.10"

- name: Checkout server
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true
repository: nextcloud/server
ref: ${{ matrix.nextcloud }}

- name: Checkout Notifications
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: nextcloud/notifications
ref: ${{ matrix.nextcloud }}
path: apps/notifications

- name: Checkout Notes
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: nextcloud/notes
ref: "main"
path: apps/notes

- name: Checkout Files Locking
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: nextcloud/files_lock
ref: ${{ matrix.nextcloud }}
Expand All @@ -234,7 +234,7 @@ jobs:
run: ./occ app:enable notes

- name: Checkout NcPyApi
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: nc_py_api

Expand All @@ -243,7 +243,7 @@ jobs:
run: python3 -m pip -v install ".[dev]"

- name: Checkout AppAPI
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: apps/app_api
repository: nextcloud/app_api
Expand All @@ -263,7 +263,7 @@ jobs:
timeout 3m tail --pid=$(cat /tmp/_install.pid) -f /dev/null

- name: Checkout Talk
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: apps/spreed
repository: nextcloud/spreed
Expand Down Expand Up @@ -359,21 +359,21 @@ jobs:
python-version: '3.11'

- name: Checkout server
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true
repository: nextcloud/server
ref: ${{ matrix.nextcloud }}

- name: Checkout Notifications
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: nextcloud/notifications
ref: ${{ matrix.nextcloud }}
path: apps/notifications

- name: Checkout Activity
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: nextcloud/activity
ref: ${{ matrix.nextcloud }}
Expand All @@ -395,7 +395,7 @@ jobs:
PHP_CLI_SERVER_WORKERS=2 php -S localhost:8080 &

- name: Checkout NcPyApi
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: nc_py_api

Expand All @@ -404,7 +404,7 @@ jobs:
run: python3 -m pip -v install ".[dev]"

- name: Checkout AppAPI
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: apps/app_api
repository: nextcloud/app_api
Expand All @@ -424,7 +424,7 @@ jobs:
timeout 3m tail --pid=$(cat /tmp/_install.pid) -f /dev/null

- name: Checkout Talk
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: apps/spreed
repository: nextcloud/spreed
Expand Down Expand Up @@ -509,28 +509,28 @@ jobs:
python-version: '3.12'

- name: Checkout server
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true
repository: nextcloud/server
ref: ${{ matrix.nextcloud }}

- name: Checkout Activity
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: nextcloud/activity
ref: ${{ matrix.nextcloud }}
path: apps/activity

- name: Checkout Notes
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: nextcloud/notes
ref: "main"
path: apps/notes

- name: Checkout Files Locking
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: nextcloud/files_lock
ref: ${{ matrix.nextcloud }}
Expand All @@ -557,7 +557,7 @@ jobs:
run: ./occ app:enable files_lock

- name: Checkout NcPyApi
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: nc_py_api

Expand Down Expand Up @@ -594,7 +594,7 @@ jobs:
runs-on: ubuntu-22.04
name: Upload Coverage
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Download Coverage Artifacts
uses: actions/download-artifact@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: '3.10'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: '3.10'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Get tag
run: |
RELEASE_VERSION=$(sed -n "s/^__version__.*\"\(.*\)\"$/\\1/p" ./nc_py_api/_version.py)
Expand Down