diff --git a/.github/workflows/_internal-setup-magento.yaml b/.github/workflows/_internal-setup-magento.yaml index e966aae..5a16a0b 100644 --- a/.github/workflows/_internal-setup-magento.yaml +++ b/.github/workflows/_internal-setup-magento.yaml @@ -103,7 +103,6 @@ jobs: - uses: graycoreio/github-actions-magento2/cache-magento@main with: - mode: 'store' composer_cache_key: '${{ matrix.magento }}' - run: composer install @@ -130,7 +129,6 @@ jobs: - uses: graycoreio/github-actions-magento2/cache-magento@main with: - mode: 'extension' composer_cache_key: 'magento/project-community-edition:2.4.8-p3' - run: composer install diff --git a/.github/workflows/check-extension.yaml b/.github/workflows/check-extension.yaml index 1ead2c8..852f593 100644 --- a/.github/workflows/check-extension.yaml +++ b/.github/workflows/check-extension.yaml @@ -56,7 +56,6 @@ jobs: - uses: graycoreio/github-actions-magento2/cache-magento@main with: - mode: extension composer_cache_key: ${{ inputs.composer_cache_key }} - name: Add extension repository @@ -116,7 +115,6 @@ jobs: - uses: graycoreio/github-actions-magento2/cache-magento@main with: - mode: extension composer_cache_key: ${{ inputs.composer_cache_key }} - name: Add extension repository @@ -226,7 +224,6 @@ jobs: - uses: graycoreio/github-actions-magento2/cache-magento@main with: - mode: extension composer_cache_key: ${{ inputs.composer_cache_key }} - name: Add extension repository diff --git a/cache-magento/README.md b/cache-magento/README.md index 9ceab75..f7d41dc 100644 --- a/cache-magento/README.md +++ b/cache-magento/README.md @@ -10,7 +10,6 @@ See the [action.yml](./action.yml) | Input | Description | Required | Default | | ------------------ | -------------------------------------------------------------------------------------- | -------- | ------------ | | composer_cache_key | A key to version the composer cache. Can be incremented if you need to bust the cache. | false | '__mageos' | -| mode | "The mode for setup, one of: `extension` or `store`." | true | N/A | ### Usage @@ -31,8 +30,6 @@ jobs: steps: - uses: actions/checkout@v6 - uses: graycoreio/github-actions-magento2/cache-magento@main - with: - mode: 'store' id: cache-magento - run: composer install diff --git a/cache-magento/action.yml b/cache-magento/action.yml index 58388f9..4486b75 100644 --- a/cache-magento/action.yml +++ b/cache-magento/action.yml @@ -8,10 +8,6 @@ inputs: default: "__mageos" description: A key to version the composer cache. Can be incremented if you need to bust the cache. - mode: - required: true - description: "The mode for setup, one of: `extension` or `store`." - outputs: cache-hit: description: "A boolean value to indicate an exact match was found for the key"