Skip to content

Commit d9eb485

Browse files
Merge pull request #3144 from nextcloud/ci/noid/actions
ci(actions): Pin action versions
2 parents 2102954 + e19644c commit d9eb485

File tree

6 files changed

+12
-1
lines changed

6 files changed

+12
-1
lines changed

.github/workflows/phpunit-mariadb.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ jobs:
107107
- name: Checkout teams dependency
108108
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
109109
with:
110+
persist-credentials: false
110111
repository: nextcloud/circles
111112
ref: ${{ matrix.server-versions }}
112113
path: apps/circles

.github/workflows/phpunit-mysql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ jobs:
105105
- name: Checkout teams dependency
106106
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
107107
with:
108+
persist-credentials: false
108109
repository: nextcloud/circles
109110
ref: ${{ matrix.server-versions }}
110111
path: apps/circles

.github/workflows/phpunit-oci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ jobs:
117117
- name: Checkout teams dependency
118118
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
119119
with:
120+
persist-credentials: false
120121
repository: nextcloud/circles
121122
ref: ${{ matrix.server-versions }}
122123
path: apps/circles

.github/workflows/phpunit-pgsql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ jobs:
108108
- name: Checkout teams dependency
109109
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
110110
with:
111+
persist-credentials: false
111112
repository: nextcloud/circles
112113
ref: ${{ matrix.server-versions }}
113114
path: apps/circles

.github/workflows/phpunit-sqlite.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,15 @@ jobs:
9797
- name: Checkout teams app
9898
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
9999
with:
100+
persist-credentials: false
100101
repository: nextcloud/circles
101102
ref: ${{ matrix.server-versions }}
102103
path: apps/circles
103104

104105
- name: Checkout analytics app
105106
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
106107
with:
108+
persist-credentials: false
107109
repository: rello/analytics
108110
ref: master
109111
path: apps/analytics

.github/workflows/playwright.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@ on:
55
pull_request:
66
branches: [main]
77

8+
permissions:
9+
contents: read
10+
811
jobs:
912
test:
1013
timeout-minutes: 60
1114
runs-on: ubuntu-latest
1215
steps:
1316
- name: Checkout app
1417
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
18+
with:
19+
persist-credentials: false
1520

1621
- name: Check composer.json
1722
id: check_composer
@@ -49,7 +54,7 @@ jobs:
4954
- name: Run Playwright tests
5055
run: npx playwright test
5156

52-
- uses: actions/upload-artifact@v6
57+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
5358
if: always()
5459
with:
5560
name: playwright-report

0 commit comments

Comments
 (0)