summaryrefslogtreecommitdiffstats
path: root/.github/workflows/phpunit-oci.yml
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-01-05 06:50:40 +0100
committerJoas Schilling <coding@schilljs.com>2023-01-05 10:08:29 +0100
commit4e696622e7a5c9e8c7aa43f2dbf3d00181848387 (patch)
tree411b834f9790702a9f82fd3d053c20e60fb0e921 /.github/workflows/phpunit-oci.yml
parent351f65884384431a0492d3aa3a06eec94f713085 (diff)
chore(CI): Bump action templates to latest versions
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github/workflows/phpunit-oci.yml')
-rw-r--r--.github/workflows/phpunit-oci.yml14
1 files changed, 8 insertions, 6 deletions
diff --git a/.github/workflows/phpunit-oci.yml b/.github/workflows/phpunit-oci.yml
index 17c9b4bf2..9750fbb1f 100644
--- a/.github/workflows/phpunit-oci.yml
+++ b/.github/workflows/phpunit-oci.yml
@@ -59,27 +59,29 @@ jobs:
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
- name: Checkout server
- uses: actions/checkout@v3
+ uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3
with:
submodules: true
repository: nextcloud/server
ref: ${{ matrix.server-versions }}
- name: Checkout app
- uses: actions/checkout@v3
+ uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3
with:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
- uses: shivammathur/setup-php@v2
+ uses: shivammathur/setup-php@1a18b2267f80291a81ca1d33e7c851fe09e7dfc4 # v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, oci8
coverage: none
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check composer file existence
id: check_composer
- uses: andstor/file-existence-action@v2
+ uses: andstor/file-existence-action@20b4d2e596410855db8f9ca21e96fbe18e12930b # v2
with:
files: apps/${{ env.APP_NAME }}/composer.json
@@ -99,7 +101,7 @@ jobs:
- name: Check PHPUnit config file existence
id: check_phpunit
- uses: andstor/file-existence-action@v2
+ uses: andstor/file-existence-action@20b4d2e596410855db8f9ca21e96fbe18e12930b # v2
with:
files: apps/${{ env.APP_NAME }}/${{ env.PHPUNIT_CONFIG }}
@@ -111,7 +113,7 @@ jobs:
- name: Check PHPUnit integration config file existence
id: check_integration
- uses: andstor/file-existence-action@v2
+ uses: andstor/file-existence-action@20b4d2e596410855db8f9ca21e96fbe18e12930b # v2
with:
files: apps/${{ env.APP_NAME }}/${{ env.PHPUNIT_INTEGRATION_CONFIG }}