Skip to content

Commit daab8ca

Browse files
Merge pull request #742 from ChristophWurst/renovate/actions-checkout-5.x
chore(deps): update actions/checkout action to v5
2 parents c912c84 + 408b9a5 commit daab8ca

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/appstore-build-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "APP_VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV
2828
2929
- name: Checkout
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
path: ${{ env.APP_NAME }}
3333

@@ -106,7 +106,7 @@ jobs:
106106
unzip latest-$NCVERSION.zip
107107
108108
- name: Checkout server master fallback
109-
uses: actions/checkout@v4
109+
uses: actions/checkout@v5
110110
if: ${{ steps.server-checkout.outcome != 'success' }}
111111
with:
112112
repository: nextcloud/server

.github/workflows/conventional_commits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
name: Conventional Commits
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: webiny/action-conventional-commits@v1.3.0

.github/workflows/release.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 repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
with:
1616
token: ${{ secrets.RELEASE_PAT }}
1717
fetch-depth: 0

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Nextcloud ${{ matrix.ocp-version }}
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Set up php
2121
uses: shivammathur/setup-php@v2
2222
with:

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install Nextcloud
3636
run: php -f nextcloud/occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database sqlite --database-pass=''
3737
- name: Checkout sentry
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
with:
4040
path: nextcloud/apps/sentry
4141
- name: Install dependencies
@@ -81,7 +81,7 @@ jobs:
8181
- name: Install Nextcloud
8282
run: php -f nextcloud/occ maintenance:install --database-host 127.0.0.1 --database-name nextcloud --database-user nextcloud --database-pass nextcloud --admin-user admin --admin-pass admin --database ${{ matrix.db }}
8383
- name: Checkout sentry
84-
uses: actions/checkout@v4
84+
uses: actions/checkout@v5
8585
with:
8686
path: nextcloud/apps/sentry
8787
- name: Install dependencies

0 commit comments

Comments
 (0)