Skip to content

Commit 56ac54c

Browse files
committed
chore: bumps ci to version 1.3.0
1 parent a6803d0 commit 56ac54c

File tree

5 files changed

+27
-27
lines changed

5 files changed

+27
-27
lines changed

.github/workflows/ci.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ jobs:
4141
steps:
4242
- uses: actions/checkout@v4
4343
- name: Install Forge
44-
uses: input-output-hk/catalyst-forge/actions/install@ci/v1.2.2
44+
uses: input-output-hk/catalyst-forge/actions/install@ci/v1.3.0
4545
if: ${{ inputs.forge_version != 'local' }}
4646
with:
4747
version: ${{ inputs.forge_version }}
4848
- name: Install Local Forge
49-
uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.2.2
49+
uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.3.0
5050
if: ${{ inputs.forge_version == 'local' }}
5151
with:
5252
earthly_token: ${{ secrets.earthly_token }}
@@ -61,14 +61,14 @@ jobs:
6161
echo "skip=false" >> $GITHUB_OUTPUT
6262
fi
6363
- name: Setup CI
64-
uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.2.2
64+
uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.3.0
6565
with:
6666
skip_docker: 'true'
6767
skip_github: 'true'
6868
skip_earthly: ${{ steps.local.outputs.skip }}
6969
- name: Discovery
7070
id: discovery
71-
uses: input-output-hk/catalyst-forge/actions/discovery@ci/v1.2.2
71+
uses: input-output-hk/catalyst-forge/actions/discovery@ci/v1.3.0
7272
with:
7373
filters: |
7474
${{ env.FORGE_REGEX_CHECK }}
@@ -80,7 +80,7 @@ jobs:
8080
${{ env.FORGE_REGEX_PUBLISH }}
8181
8282
check:
83-
uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.2.2
83+
uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.3.0
8484
needs: [discover]
8585
if: (fromJson(needs.discover.outputs.earthfiles)['^check(-.*)?$'] != null) && !failure() && !cancelled()
8686
with:
@@ -92,7 +92,7 @@ jobs:
9292
earthly_token: ${{ secrets.earthly_token }}
9393

9494
build:
95-
uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.2.2
95+
uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.3.0
9696
needs: [discover, check]
9797
if: (fromJson(needs.discover.outputs.earthfiles)['^build(-.*)?$'] != null) && !failure() && !cancelled()
9898
with:
@@ -104,7 +104,7 @@ jobs:
104104
earthly_token: ${{ secrets.earthly_token }}
105105

106106
package:
107-
uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.2.2
107+
uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.3.0
108108
needs: [discover, check, build]
109109
if: (fromJson(needs.discover.outputs.earthfiles)['^package(-.*)?$'] != null) && !failure() && !cancelled()
110110
with:
@@ -116,7 +116,7 @@ jobs:
116116
earthly_token: ${{ secrets.earthly_token }}
117117

118118
test:
119-
uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.2.2
119+
uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.3.0
120120
needs: [discover, check, build, package]
121121
if: (fromJson(needs.discover.outputs.earthfiles)['^test(-.*)?$'] != null) && !failure() && !cancelled()
122122
with:
@@ -128,7 +128,7 @@ jobs:
128128
earthly_token: ${{ secrets.earthly_token }}
129129

130130
docs:
131-
uses: input-output-hk/catalyst-forge/.github/workflows/docs.yml@ci/v1.2.2
131+
uses: input-output-hk/catalyst-forge/.github/workflows/docs.yml@ci/v1.3.0
132132
needs: [discover, check, build, test]
133133
if: (fromJson(needs.discover.outputs.earthfiles)['^docs(-.*)?$'] != null) && !failure() && !cancelled()
134134
with:
@@ -138,7 +138,7 @@ jobs:
138138
earthly_token: ${{ secrets.earthly_token }}
139139

140140
release:
141-
uses: input-output-hk/catalyst-forge/.github/workflows/release.yml@ci/v1.2.2
141+
uses: input-output-hk/catalyst-forge/.github/workflows/release.yml@ci/v1.3.0
142142
needs: [discover, check, build, test]
143143
if: (fromJson(needs.discover.outputs.releases)[0] != null) && !failure() && !cancelled()
144144
with:
@@ -150,7 +150,7 @@ jobs:
150150
earthly_token: ${{ secrets.earthly_token }}
151151

152152
deploy:
153-
uses: input-output-hk/catalyst-forge/.github/workflows/deploy.yml@ci/v1.2.2
153+
uses: input-output-hk/catalyst-forge/.github/workflows/deploy.yml@ci/v1.3.0
154154
needs: [discover, check, build, test, release]
155155
if: (fromJson(needs.discover.outputs.deployments)[0] != null) && github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && !failure() && !cancelled()
156156
with:

.github/workflows/deploy.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ jobs:
4141
steps:
4242
- uses: actions/checkout@v4
4343
- name: Install Forge
44-
uses: input-output-hk/catalyst-forge/actions/install@ci/v1.2.2
44+
uses: input-output-hk/catalyst-forge/actions/install@ci/v1.3.0
4545
if: ${{ inputs.forge_version != 'local' }}
4646
with:
4747
version: ${{ inputs.forge_version }}
4848
- name: Install Local Forge
49-
uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.2.2
49+
uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.3.0
5050
if: ${{ inputs.forge_version == 'local' }}
5151
with:
5252
earthly_token: ${{ secrets.earthly_token }}
@@ -61,11 +61,11 @@ jobs:
6161
echo "skip=false" >> $GITHUB_OUTPUT
6262
fi
6363
- name: Setup CI
64-
uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.2.2
64+
uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.3.0
6565
with:
6666
skip_earthly: ${{ steps.local.outputs.skip }}
6767
- name: Deploy
68-
uses: input-output-hk/catalyst-forge/actions/run@ci/v1.2.2
68+
uses: input-output-hk/catalyst-forge/actions/run@ci/v1.3.0
6969
with:
7070
command: deploy push
7171
args: ${{ matrix.deployment }}

.github/workflows/docs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ jobs:
4444
steps:
4545
- uses: actions/checkout@v4
4646
- name: Install Forge
47-
uses: input-output-hk/catalyst-forge/actions/install@ci/v1.2.2
47+
uses: input-output-hk/catalyst-forge/actions/install@ci/v1.3.0
4848
if: ${{ inputs.forge_version != 'local' }}
4949
with:
5050
version: ${{ inputs.forge_version }}
5151
- name: Install Local Forge
52-
uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.2.2
52+
uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.3.0
5353
if: ${{ inputs.forge_version == 'local' }}
5454
with:
5555
earthly_token: ${{ secrets.earthly_token }}
@@ -64,11 +64,11 @@ jobs:
6464
echo "skip=false" >> $GITHUB_OUTPUT
6565
fi
6666
- name: Setup CI
67-
uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.2.2
67+
uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.3.0
6868
with:
6969
skip_earthly: ${{ steps.local.outputs.skip }}
7070
- name: Run
71-
uses: input-output-hk/catalyst-forge/actions/run@ci/v1.2.2
71+
uses: input-output-hk/catalyst-forge/actions/run@ci/v1.3.0
7272
with:
7373
command: run
7474
args: --artifact ${{ env.OUTPUT }} ${{ matrix.earthfile }}

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ jobs:
4545
steps:
4646
- uses: actions/checkout@v4
4747
- name: Install Forge
48-
uses: input-output-hk/catalyst-forge/actions/install@ci/v1.2.2
48+
uses: input-output-hk/catalyst-forge/actions/install@ci/v1.3.0
4949
if: ${{ inputs.forge_version != 'local' }}
5050
with:
5151
version: ${{ inputs.forge_version }}
5252
- name: Install Local Forge
53-
uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.2.2
53+
uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.3.0
5454
if: ${{ inputs.forge_version == 'local' }}
5555
with:
5656
earthly_token: ${{ secrets.earthly_token }}
@@ -65,11 +65,11 @@ jobs:
6565
echo "skip=false" >> $GITHUB_OUTPUT
6666
fi
6767
- name: Setup CI
68-
uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.2.2
68+
uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.3.0
6969
with:
7070
skip_earthly: ${{ steps.local.outputs.skip }}
7171
- name: Release
72-
uses: input-output-hk/catalyst-forge/actions/run@ci/v1.2.2
72+
uses: input-output-hk/catalyst-forge/actions/run@ci/v1.3.0
7373
with:
7474
command: release
7575
args: ${{ matrix.release.project }} ${{ matrix.release.name }}

.github/workflows/run.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@v4
4444
- name: Install Forge
45-
uses: input-output-hk/catalyst-forge/actions/install@ci/v1.2.2
45+
uses: input-output-hk/catalyst-forge/actions/install@ci/v1.3.0
4646
if: ${{ inputs.forge_version != 'local' }}
4747
with:
4848
version: ${{ inputs.forge_version }}
4949
- name: Install Local Forge
50-
uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.2.2
50+
uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.3.0
5151
if: ${{ inputs.forge_version == 'local' }}
5252
with:
5353
earthly_token: ${{ secrets.earthly_token }}
@@ -62,11 +62,11 @@ jobs:
6262
echo "skip=false" >> $GITHUB_OUTPUT
6363
fi
6464
- name: Setup CI
65-
uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.2.2
65+
uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.3.0
6666
with:
6767
skip_earthly: ${{ steps.local.outputs.skip }}
6868
- name: Run
69-
uses: input-output-hk/catalyst-forge/actions/run@ci/v1.2.2
69+
uses: input-output-hk/catalyst-forge/actions/run@ci/v1.3.0
7070
with:
7171
command: run
7272
args: ${{ matrix.earthfile }}

0 commit comments

Comments
 (0)