diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac3a0e60..e8891da2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,12 +30,12 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Forge - uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.0 if: ${{ inputs.forge_version != 'local' }} with: version: ${{ inputs.forge_version }} - name: Install Local Forge - uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.0 if: ${{ inputs.forge_version == 'local' }} with: earthly_token: ${{ secrets.earthly_token }} @@ -50,14 +50,14 @@ jobs: echo "skip=false" >> $GITHUB_OUTPUT fi - name: Setup CI - uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.0 with: skip_docker: 'true' skip_github: 'true' skip_earthly: ${{ steps.local.outputs.skip }} - name: Discovery id: discovery - uses: input-output-hk/catalyst-forge/actions/discovery@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/discovery@ci/v1.1.0 with: filters: | ${{ env.FORGE_REGEX_CHECK }} @@ -69,7 +69,7 @@ jobs: ${{ env.FORGE_REGEX_PUBLISH }} check: - uses: ./.github/workflows/run.yml@ci/v1.1.1 + uses: ./.github/workflows/run.yml@ci/v1.1.0 needs: [discover] if: (fromJson(needs.discover.outputs.earthfiles)['^check(-.*)?$'] != null) && !failure() && !cancelled() with: @@ -79,7 +79,7 @@ jobs: earthly_token: ${{ secrets.earthly_token }} build: - uses: ./.github/workflows/run.yml@ci/v1.1.1 + uses: ./.github/workflows/run.yml@ci/v1.1.0 needs: [discover, check] if: (fromJson(needs.discover.outputs.earthfiles)['^build(-.*)?$'] != null) && !failure() && !cancelled() with: @@ -89,7 +89,7 @@ jobs: earthly_token: ${{ secrets.earthly_token }} package: - uses: ./.github/workflows/run.yml@ci/v1.1.1 + uses: ./.github/workflows/run.yml@ci/v1.1.0 needs: [discover, check, build] if: (fromJson(needs.discover.outputs.earthfiles)['^package(-.*)?$'] != null) && !failure() && !cancelled() with: @@ -99,7 +99,7 @@ jobs: earthly_token: ${{ secrets.earthly_token }} test: - uses: ./.github/workflows/run.yml@ci/v1.1.1 + uses: ./.github/workflows/run.yml@ci/v1.1.0 needs: [discover, check, build, package] if: (fromJson(needs.discover.outputs.earthfiles)['^test(-.*)?$'] != null) && !failure() && !cancelled() with: @@ -109,7 +109,7 @@ jobs: earthly_token: ${{ secrets.earthly_token }} docs: - uses: ./.github/workflows/docs.yml@ci/v1.1.1 + uses: ./.github/workflows/docs.yml@ci/v1.1.0 needs: [discover, check, build, test] if: (fromJson(needs.discover.outputs.earthfiles)['^docs(-.*)?$'] != null) && !failure() && !cancelled() with: @@ -119,7 +119,7 @@ jobs: earthly_token: ${{ secrets.earthly_token }} publish: - uses: ./.github/workflows/publish.yml@ci/v1.1.1 + uses: ./.github/workflows/publish.yml@ci/v1.1.0 needs: [discover, check, build, test] if: (fromJson(needs.discover.outputs.earthfiles)['^publish(-.*)?$'] != null) && !failure() && !cancelled() with: @@ -129,7 +129,7 @@ jobs: earthly_token: ${{ secrets.earthly_token }} deploy: - uses: ./.github/workflows/deploy.yml@ci/v1.1.1 + uses: ./.github/workflows/deploy.yml@ci/v1.1.0 needs: [discover, check, build, test, publish] if: (fromJson(needs.discover.outputs.deployments)[0] != null) && github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && !failure() && !cancelled() with: @@ -139,7 +139,7 @@ jobs: earthly_token: ${{ secrets.earthly_token }} release: - uses: ./.github/workflows/release.yml@ci/v1.1.1 + uses: ./.github/workflows/release.yml@ci/v1.1.0 needs: [discover, check, build, test] if: (fromJson(needs.discover.outputs.earthfiles)['^release(-.*)?$'] != null) && !failure() && !cancelled() with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5eb44b51..55d131a1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,12 +31,12 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Forge - uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.0 if: ${{ inputs.forge_version != 'local' }} with: version: ${{ inputs.forge_version }} - name: Install Local Forge - uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.0 if: ${{ inputs.forge_version == 'local' }} with: earthly_token: ${{ secrets.earthly_token }} @@ -51,7 +51,7 @@ jobs: echo "skip=false" >> $GITHUB_OUTPUT fi - name: Setup CI - uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.0 with: skip_earthly: ${{ steps.local.outputs.skip }} - name: Deploy diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index bee2b7a6..8d95d3e3 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -29,12 +29,12 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Forge - uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.0 if: ${{ inputs.forge_version != 'local' }} with: version: ${{ inputs.forge_version }} - name: Install Local Forge - uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.0 if: ${{ inputs.forge_version == 'local' }} with: earthly_token: ${{ secrets.earthly_token }} @@ -49,12 +49,12 @@ jobs: echo "skip=false" >> $GITHUB_OUTPUT fi - name: Setup CI - uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.0 with: skip_earthly: ${{ steps.local.outputs.skip }} - name: Run id: run - uses: input-output-hk/catalyst-forge/actions/run@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/run@ci/v1.1.0 with: artifact: ${{ env.OUTPUT }} path: ${{ matrix.earthfile }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 702b34d1..13c47a85 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,12 +36,12 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Forge - uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.0 if: ${{ inputs.forge_version != 'local' }} with: version: ${{ inputs.forge_version }} - name: Install Local Forge - uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.0 if: ${{ inputs.forge_version == 'local' }} with: earthly_token: ${{ secrets.earthly_token }} @@ -56,12 +56,12 @@ jobs: echo "skip=false" >> $GITHUB_OUTPUT fi - name: Setup CI - uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.0 with: skip_earthly: ${{ steps.local.outputs.skip }} - name: Run id: run - uses: input-output-hk/catalyst-forge/actions/run@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/run@ci/v1.1.0 with: path: ${{ matrix.earthfile }} target_args: --container ${{ env.CONTAINER }} --tag ${{ env.TAG }} @@ -77,7 +77,7 @@ jobs: echo "project=$PROJECT" >> $GITHUB_OUTPUT echo "target=$TARGET" >> $GITHUB_OUTPUT - name: Publish - uses: input-output-hk/catalyst-forge/actions/publish@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/publish@ci/v1.1.0 with: image: "${{ env.CONTAINER }}:${{ env.TAG }}" project: ${{ steps.parse.outputs.project }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e3a36c94..d28a9dc6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,12 +29,12 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Forge - uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.0 if: ${{ inputs.forge_version != 'local' }} with: version: ${{ inputs.forge_version }} - name: Install Local Forge - uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.0 if: ${{ inputs.forge_version == 'local' }} with: earthly_token: ${{ secrets.earthly_token }} @@ -49,12 +49,12 @@ jobs: echo "skip=false" >> $GITHUB_OUTPUT fi - name: Setup CI - uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.0 with: skip_earthly: ${{ steps.local.outputs.skip }} - name: Run id: run - uses: input-output-hk/catalyst-forge/actions/run@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/run@ci/v1.1.0 with: artifact: ${{ env.OUTPUT }} path: ${{ matrix.earthfile }} @@ -70,7 +70,7 @@ jobs: echo "project=$PROJECT" >> $GITHUB_OUTPUT echo "target=$TARGET" >> $GITHUB_OUTPUT - name: Release - uses: input-output-hk/catalyst-forge/actions/release@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/release@ci/v1.1.0 with: native_platform: linux/amd64 path: ${{ env.OUTPUT }} diff --git a/.github/workflows/run.yml b/.github/workflows/run.yml index f2ede9ab..da14c146 100644 --- a/.github/workflows/run.yml +++ b/.github/workflows/run.yml @@ -27,12 +27,12 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Forge - uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.0 if: ${{ inputs.forge_version != 'local' }} with: version: ${{ inputs.forge_version }} - name: Install Local Forge - uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.0 if: ${{ inputs.forge_version == 'local' }} with: earthly_token: ${{ secrets.earthly_token }} @@ -47,11 +47,11 @@ jobs: echo "skip=false" >> $GITHUB_OUTPUT fi - name: Setup CI - uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.0 with: skip_earthly: ${{ steps.local.outputs.skip }} - name: Run - uses: input-output-hk/catalyst-forge/actions/run@ci/v1.1.1 + uses: input-output-hk/catalyst-forge/actions/run@ci/v1.1.0 with: path: ${{ matrix.earthfile }} env: