diff --git a/action.yml b/action.yml index bc39d8e6..7da7cd31 100644 --- a/action.yml +++ b/action.yml @@ -25,11 +25,7 @@ inputs: debug_mode: description: "Run parser in debug mode" required: false - default: "false" - pull_docker_from_cache: - description: "If should store gitstream docker in GitHub cache" - required: false - default: "false" + default: false runs: using: "composite" steps: @@ -104,17 +100,6 @@ runs: ref: ${{ fromJSON(fromJSON(github.event.inputs.client_payload)).cmRepoRef }} path: "gitstream/cm/" - - name: Docker Layer Caching - if: ${{ inputs.pull_docker_from_cache == 'true' }} - uses: satackey/action-docker-layer-caching@v0.0.11 - continue-on-error: true - with: - concurrency: 12 - - - name: Pull gitstream Docker - shell: bash - run: docker pull gitstream/rules-engine:latest - - name: Run The Action if: always() run: | @@ -124,6 +109,7 @@ runs: value="${!var}" echo "$var=$value" >> "$env_file" done + docker pull gitstream/rules-engine:latest docker run --env-file $env_file \ -v $(pwd)/gitstream:/code \ -e HEAD_REF=$'upstream/${{ steps.safe-strings.outputs.head_ref }}' \