fix(Cache): set secure 0755 permissions mode when creating directory in FileVarExportHandler
#15776
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # When a PR is opened or a push is made, perform | |
| # a static analysis check on the code using PHPStan. | |
| name: PHPStan | |
| on: | |
| pull_request: | |
| branches: | |
| - 'develop' | |
| - '4.*' | |
| paths: | |
| - 'app/**.php' | |
| - 'system/**.php' | |
| - 'tests/**.php' | |
| - 'utils/**.php' | |
| - composer.json | |
| - phpstan.dist.neon | |
| - phpstan-baseline.php | |
| - '.github/workflows/test-phpstan.yml' | |
| push: | |
| branches: | |
| - 'develop' | |
| - '4.*' | |
| paths: | |
| - 'app/**.php' | |
| - 'system/**.php' | |
| - 'tests/**.php' | |
| - 'utils/**.php' | |
| - composer.json | |
| - phpstan.dist.neon | |
| - phpstan-baseline.php | |
| - '.github/workflows/test-phpstan.yml' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: PHP ${{ matrix.php-versions }} Static Analysis | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 | |
| with: | |
| php-version: '8.2' | |
| extensions: intl | |
| coverage: none | |
| - name: Use latest Composer | |
| run: composer self-update | |
| - name: Validate composer.json | |
| run: composer validate --strict | |
| - name: Get composer cache directory | |
| id: composer-cache | |
| run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: Cache dependencies | |
| uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }} | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
| restore-keys: ${{ runner.os }}-composer- | |
| - name: Create PHPStan result cache directory | |
| run: mkdir -p build/phpstan | |
| - name: Cache PHPStan result cache directory | |
| uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 | |
| with: | |
| path: build/phpstan | |
| key: ${{ runner.os }}-phpstan-${{ github.sha }} | |
| restore-keys: ${{ runner.os }}-phpstan- | |
| - name: Install dependencies | |
| run: composer update --ansi --no-interaction | |
| - name: Run static analysis | |
| run: composer phpstan:check |