diff --git a/.github/workflows/php-test.yml b/.github/workflows/php-test.yml index 05521ee48a..dae3739b92 100644 --- a/.github/workflows/php-test.yml +++ b/.github/workflows/php-test.yml @@ -59,8 +59,8 @@ jobs: run: | docker run --detach --net=host --shm-size="2g" selenium/standalone-chrome - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 # - name: Setup cache environment # id: cache-env @@ -71,7 +71,7 @@ jobs: # key: ${{ env.key }} # - name: Cache extensions -# uses: actions/cache@v3 +# uses: actions/cache@v4 # with: # path: ${{ steps.cache-env.outputs.dir }} # key: ${{ steps.cache-env.outputs.key }} @@ -92,7 +92,7 @@ jobs: run: composer validate - name: Cache dependencies installed with composer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ env.COMPOSER_CACHE_DIR }} key: php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }} @@ -136,7 +136,7 @@ jobs: - name: Upload Codeception Output if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: codeception-output path: protected/humhub/tests/codeception/_output/* diff --git a/CHANGELOG.md b/CHANGELOG.md index adde815449..d86883a1a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ HumHub Changelog - Fix #7296: Fix email validation of invite new users - Fix #7319: Display correct profile field value in user subtitle - Fix #7322: Always allow invitation by link from Administration. Implement separate invitation by link from People. +- Enh #7335: Update GitHub workflow versions 1.16.2 (September 5, 2024) --------------------------