Update GitHub workflow versions (#7336)

This commit is contained in:
Yuriy Bakhtin 2024-12-12 12:02:21 +01:00 committed by GitHub
parent 6a57a8cad2
commit 81ffdea9d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 8 deletions

View File

@ -6,7 +6,7 @@ jobs:
php-cs-fixer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check the commit message for skipping PHP-CS-Fixer
id: check_phpcs_skip
@ -19,7 +19,7 @@ jobs:
echo "Proceeding with PHP-CS-Fixer steps."
fi
- uses: actions/cache@v3
- uses: actions/cache@v4
if: steps.check_phpcs_skip.outputs.skip == 'false'
with:
path: .php-cs-fixer.cache

View File

@ -58,8 +58,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
@ -70,7 +70,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 }}
@ -91,7 +91,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') }}
@ -135,7 +135,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/*

View File

@ -13,8 +13,9 @@ HumHub Changelog
- Enh #7317: Space browser: Make the whole space card header and body clickable
- Enh #7329: Add a new global "Manage Content" Group Permission (see [migration guide](https://github.com/humhub/humhub/blob/develop/MIGRATE-DEV.md#version-117-unreleased) for details)
- Enh #7325: Add missing IDs in the modal login forms
- Enh #7333: Improved Yii alias handling and added ENV support
- Enh #7333: Improved Yii alias handling and added ENV support
- Enh #7334: New safe method to rename a database column
- Enh #7336: Update GitHub workflow versions
1.17.0-beta.2 (November 12, 2024)
---------------------------------