diff --git a/.github/workflows/_internal-setup-magento.yaml b/.github/workflows/_internal-setup-magento.yaml index 53ca36c3..3c7fc572 100644 --- a/.github/workflows/_internal-setup-magento.yaml +++ b/.github/workflows/_internal-setup-magento.yaml @@ -95,7 +95,6 @@ jobs: - uses: mage-os/github-actions/cache-magento@main with: - mode: 'store' composer_cache_key: '${{ matrix.magento }}' - run: composer install diff --git a/cache-magento/README.md b/cache-magento/README.md index 0c04ede5..c2b52749 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@v3 - uses: mage-os/github-actions/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 6d16e2bd..3da98886 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"