Skip to content

Commit 34f2929

Browse files
chore(deps): update actions/checkout digest to 11bd719
1 parent 920d139 commit 34f2929

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/create-release-draft.yml

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

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
16+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1717

1818
- name: Download artifacts
1919
id: download-artifact

.github/workflows/lint.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: info.xml lint
2626

2727
steps:
28-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
28+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2929

3030
- name: Download xml appinfo schema
3131
run: wget https://raw.githubusercontent.com/nextcloud/appstore/master/nextcloudappstore/api/v1/release/info.xsd
@@ -44,7 +44,7 @@ jobs:
4444
php-versions: ["8.1", "8.2"]
4545

4646
steps:
47-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
47+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
4848

4949
- name: Set up php ${{ matrix.php-versions }}
5050
uses: shivammathur/setup-php@v2
@@ -63,7 +63,7 @@ jobs:
6363
php-versions: ["8.1", "8.2"]
6464

6565
steps:
66-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
66+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
6767

6868
- name: Set up php ${{ matrix.php-versions }}
6969
uses: shivammathur/setup-php@v2
@@ -103,12 +103,12 @@ jobs:
103103
unzip latest-$NCVERSION.zip
104104
105105
- name: Checkout ${{ env.APP_NAME }} app
106-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
106+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
107107
with:
108108
path: apps/${{ env.APP_NAME }}
109109

110110
- name: Checkout ${{ env.CPA_NAME }} app
111-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
111+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
112112
if: ${{ steps.server-checkout.outcome != 'success' }}
113113
with:
114114
repository: cloud-py-api/${{ env.CPA_NAME }}
@@ -157,7 +157,7 @@ jobs:
157157
name: eslint
158158

159159
steps:
160-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
160+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
161161
- name: Install dependencies
162162
run: npm ci
163163

@@ -170,7 +170,7 @@ jobs:
170170
name: stylelint
171171

172172
steps:
173-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
173+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
174174
- name: Install dependencies
175175
run: npm ci
176176

.github/workflows/publish-appstore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
14+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1515

1616
- name: Get release url
1717
run: |

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ jobs:
6464
run: tar -xjf nextcloud-${{ matrix.nextcloud }}.tar.bz2 --strip-components 1
6565

6666
- name: Checkout ${{ env.APP_NAME }} app
67-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
67+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
6868
with:
6969
path: apps/${{ env.APP_NAME }}
7070

7171
- name: Checkout ${{ env.CPA_NAME }} app
72-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
72+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
7373
with:
7474
repository: cloud-py-api/${{ env.CPA_NAME }}
7575
path: apps/${{ env.CPA_NAME }}
@@ -211,12 +211,12 @@ jobs:
211211
run: tar -xjf nextcloud-${{ matrix.nextcloud }}.tar.bz2 --strip-components 1
212212

213213
- name: Checkout app
214-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
214+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
215215
with:
216216
path: apps/${{ env.APP_NAME }}
217217

218218
- name: Checkout ${{ env.CPA_NAME }} app
219-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
219+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
220220
with:
221221
repository: cloud-py-api/${{ env.CPA_NAME }}
222222
path: apps/${{ env.CPA_NAME }}

0 commit comments

Comments
 (0)