diff --git a/.github/workflows/acceptance-stage.yaml b/.github/workflows/acceptance-stage.yaml index 29346a9..86c9b9a 100644 --- a/.github/workflows/acceptance-stage.yaml +++ b/.github/workflows/acceptance-stage.yaml @@ -21,7 +21,7 @@ jobs: timeout-minutes: 10 continue-on-error: ${{ matrix.is-php-experimental }} strategy: - max-parallel: 10 + max-parallel: 5 matrix: openemr: [master, v7_0_2, v7_0_1_1, v7_0_1] php: ['8.1', '8.2', '8.3'] @@ -36,17 +36,6 @@ jobs: - openemr: v7_0_0 php: '7.4' is-php-experimental: false - - # php: - # - '8.1' - # is-php-experimental: [false] - # include: - # - php: '8.1' - # openemr: [v7_0_1_1, v7_0_1] - # is-php-experimental: false - # - php: '8.2' - # openemr: [v7_0_1_1, v7_0_1] - # is-php-experimental: true fail-fast: false steps: - name: Setup php extension cache environment @@ -60,7 +49,7 @@ jobs: - name: Cache PHP extensions if: ${{ vars.USE_PHP_EXTENSION_CACHE }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.cache-php-extensions.outputs.dir }} key: ${{ steps.cache-php-extensions.outputs.key }} @@ -82,7 +71,7 @@ jobs: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ vars.USE_COMPOSER_CACHE }} with: path: ${{ steps.composer-cache.outputs.dir }} @@ -94,7 +83,7 @@ jobs: uses: crazy-max/ghaction-dump-context@v2 - name: Clone openEmr tag ${{ matrix.openemr }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: openemr/openemr ref: ${{ matrix.openemr }} diff --git a/.github/workflows/commit-stage.yaml b/.github/workflows/commit-stage.yaml index dcd1db4..cad49dd 100644 --- a/.github/workflows/commit-stage.yaml +++ b/.github/workflows/commit-stage.yaml @@ -42,7 +42,7 @@ jobs: fail-fast: false steps: - name: Checkout on SHA-${{ inputs.triggering-sha }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.triggering-sha }} @@ -57,7 +57,7 @@ jobs: - name: Cache PHP extensions if: ${{ vars.USE_PHP_EXTENSION_CACHE }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.cache-php-extensions.outputs.dir }} key: ${{ steps.cache-php-extensions.outputs.key }} @@ -78,7 +78,7 @@ jobs: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ vars.USE_COMPOSER_CACHE }} with: path: ${{ steps.composer-cache.outputs.dir }} @@ -134,7 +134,7 @@ jobs: fail-fast: true steps: - name: Checkout on SHA-${{ inputs.triggering-sha }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.triggering-sha }} @@ -149,7 +149,7 @@ jobs: - name: Cache PHP extensions if: ${{ vars.USE_PHP_EXTENSION_CACHE }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.cache-php-extensions.outputs.dir }} key: ${{ steps.cache-php-extensions.outputs.key }} @@ -192,7 +192,7 @@ jobs: fail-fast: true steps: - name: Checkout on SHA-${{ inputs.triggering-sha }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.triggering-sha }} @@ -207,7 +207,7 @@ jobs: - name: Cache PHP extensions if: ${{ vars.USE_PHP_EXTENSION_CACHE }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.cache-php-extensions.outputs.dir }} key: ${{ steps.cache-php-extensions.outputs.key }} @@ -229,7 +229,7 @@ jobs: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ vars.USE_COMPOSER_CACHE }} with: path: ${{ steps.composer-cache.outputs.dir }} @@ -261,7 +261,7 @@ jobs: fail-fast: true steps: - name: Checkout on SHA-${{ inputs.triggering-sha }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.triggering-sha }} @@ -276,7 +276,7 @@ jobs: - name: Cache PHP extensions if: ${{ vars.USE_PHP_EXTENSION_CACHE }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.cache-php-extensions.outputs.dir }} key: ${{ steps.cache-php-extensions.outputs.key }} @@ -298,7 +298,7 @@ jobs: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ vars.USE_COMPOSER_CACHE }} with: path: ${{ steps.composer-cache.outputs.dir }} @@ -329,7 +329,7 @@ jobs: fail-fast: true steps: - name: Checkout on SHA-${{ inputs.triggering-sha }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.triggering-sha }} @@ -344,7 +344,7 @@ jobs: - name: Cache PHP extensions if: ${{ vars.USE_PHP_EXTENSION_CACHE }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.cache-php-extensions.outputs.dir }} key: ${{ steps.cache-php-extensions.outputs.key }} @@ -366,7 +366,7 @@ jobs: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 if: ${{ vars.USE_COMPOSER_CACHE }} with: path: ${{ steps.composer-cache.outputs.dir }} diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index be009b0..b4b330a 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -27,7 +27,7 @@ jobs: fail-fast: true steps: - name: Checkout on SHA-${{ inputs.triggering-sha }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ env.FROM_REF }}