@@ -47,12 +47,12 @@ jobs:
47
47
steps :
48
48
- uses : actions/checkout@v4
49
49
- name : Install Forge
50
- uses : input-output-hk/catalyst-forge/actions/install@manual-earthly-download
50
+ uses : input-output-hk/catalyst-forge/actions/install@master
51
51
if : ${{ inputs.forge_version != 'local' }}
52
52
with :
53
53
version : ${{ inputs.forge_version }}
54
54
- name : Install Local Forge
55
- uses : input-output-hk/catalyst-forge/actions/install-local@manual-earthly-download
55
+ uses : input-output-hk/catalyst-forge/actions/install-local@master
56
56
if : ${{ inputs.forge_version == 'local' }}
57
57
with :
58
58
earthly_token : ${{ secrets.earthly_token }}
@@ -67,14 +67,14 @@ jobs:
67
67
echo "skip=false" >> $GITHUB_OUTPUT
68
68
fi
69
69
- name : Setup CI
70
- uses : input-output-hk/catalyst-forge/actions/setup@manual-earthly-download
70
+ uses : input-output-hk/catalyst-forge/actions/setup@master
71
71
with :
72
72
skip_docker : ' true'
73
73
skip_github : ' true'
74
74
skip_earthly : ${{ steps.local.outputs.skip }}
75
75
- name : Discovery
76
76
id : discovery
77
- uses : input-output-hk/catalyst-forge/actions/discovery@manual-earthly-download
77
+ uses : input-output-hk/catalyst-forge/actions/discovery@master
78
78
with :
79
79
filters : |
80
80
${{ env.FORGE_REGEX_CHECK }}
86
86
${{ env.FORGE_REGEX_PUBLISH }}
87
87
${{ env.FORGE_REGEX_NIGHTLY }}
88
88
check :
89
- uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@manual-earthly-download
89
+ uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@master
90
90
needs : [discover]
91
91
if : (fromJson(needs.discover.outputs.earthfiles)['^check(-.*)?$'] != null) && !failure() && !cancelled()
92
92
with :
98
98
earthly_token : ${{ secrets.earthly_token }}
99
99
100
100
build :
101
- uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@manual-earthly-download
101
+ uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@master
102
102
needs : [discover, check]
103
103
if : (fromJson(needs.discover.outputs.earthfiles)['^build(-.*)?$'] != null) && !failure() && !cancelled()
104
104
with :
@@ -110,7 +110,7 @@ jobs:
110
110
earthly_token : ${{ secrets.earthly_token }}
111
111
112
112
package :
113
- uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@manual-earthly-download
113
+ uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@master
114
114
needs : [discover, check, build]
115
115
if : (fromJson(needs.discover.outputs.earthfiles)['^package(-.*)?$'] != null) && !failure() && !cancelled()
116
116
with :
@@ -122,7 +122,7 @@ jobs:
122
122
earthly_token : ${{ secrets.earthly_token }}
123
123
124
124
test :
125
- uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@manual-earthly-download
125
+ uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@master
126
126
needs : [discover, check, build, package]
127
127
if : (fromJson(needs.discover.outputs.earthfiles)['^test(-.*)?$'] != null) && !failure() && !cancelled()
128
128
with :
@@ -134,7 +134,7 @@ jobs:
134
134
earthly_token : ${{ secrets.earthly_token }}
135
135
136
136
nightly :
137
- uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@manual-earthly-download
137
+ uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@master
138
138
needs : [discover, check, build, package]
139
139
if : (fromJson(needs.discover.outputs.earthfiles)['^nightly(-.*)?$'] != null) && !failure() && !cancelled() && inputs.nightly == true
140
140
with :
@@ -146,7 +146,7 @@ jobs:
146
146
earthly_token : ${{ secrets.earthly_token }}
147
147
148
148
docs :
149
- uses : input-output-hk/catalyst-forge/.github/workflows/docs.yml@manual-earthly-download
149
+ uses : input-output-hk/catalyst-forge/.github/workflows/docs.yml@master
150
150
needs : [discover, check, build, test]
151
151
if : (fromJson(needs.discover.outputs.earthfiles)['^docs(-.*)?$'] != null) && !failure() && !cancelled()
152
152
with :
@@ -156,7 +156,7 @@ jobs:
156
156
earthly_token : ${{ secrets.earthly_token }}
157
157
158
158
release :
159
- uses : input-output-hk/catalyst-forge/.github/workflows/release.yml@manual-earthly-download
159
+ uses : input-output-hk/catalyst-forge/.github/workflows/release.yml@master
160
160
needs : [discover, check, build, test]
161
161
if : (fromJson(needs.discover.outputs.releases)[0] != null) && !failure() && !cancelled()
162
162
with :
@@ -168,7 +168,7 @@ jobs:
168
168
earthly_token : ${{ secrets.earthly_token }}
169
169
170
170
deploy :
171
- uses : input-output-hk/catalyst-forge/.github/workflows/deploy.yml@manual-earthly-download
171
+ uses : input-output-hk/catalyst-forge/.github/workflows/deploy.yml@master
172
172
needs : [discover, check, build, test, release]
173
173
if : (fromJson(needs.discover.outputs.deployments)[0] != null) && !failure() && !cancelled()
174
174
with :
0 commit comments