@@ -85,10 +85,10 @@ jobs:
85
85
fi
86
86
87
87
- name : Extract Versions
88
- uses : Woody4618/github-action/.github/actions/extract-versions@v0.1.0
88
+ uses : Woody4618/github-action/.github/actions/extract-versions@main
89
89
90
90
- name : Setup Environment
91
- uses : Woody4618/github-action/.github/actions/setup@v0.1.0
91
+ uses : Woody4618/github-action/.github/actions/setup@main
92
92
93
93
- name : Debug Environment Before Anchor Setup
94
94
run : |
@@ -97,10 +97,10 @@ jobs:
97
97
echo "==========================="
98
98
99
99
- name : Install Solana
100
- uses : Woody4618/github-action/.github/actions/setup-solana@v0.1.0
100
+ uses : Woody4618/github-action/.github/actions/setup-solana@main
101
101
102
102
- name : Install Anchor
103
- uses : Woody4618/github-action/.github/actions/setup-anchor@v0.1.0
103
+ uses : Woody4618/github-action/.github/actions/setup-anchor@main
104
104
with :
105
105
anchor-version : ${{ env.ANCHOR_VERSION }}
106
106
@@ -148,14 +148,14 @@ jobs:
148
148
cat Anchor.toml
149
149
150
150
- name : Build Anchor
151
- uses : Woody4618/github-action/.github/actions/build-anchor@v0.1.0
151
+ uses : Woody4618/github-action/.github/actions/build-anchor@main
152
152
with :
153
153
testing : false
154
154
devnet : ${{ inputs.network == 'devnet' }}
155
155
program : ${{ env.PROGRAM_NAME }}
156
156
157
157
- name : Build Verified
158
- uses : Woody4618/github-action/.github/actions/build-verified@v0.1.0
158
+ uses : Woody4618/github-action/.github/actions/build-verified@main
159
159
id : build-verified
160
160
with :
161
161
verify-version : ${{ env.SOLANA_VERIFY_VERSION }}
@@ -213,7 +213,7 @@ jobs:
213
213
echo "IDL file: ./artifacts/build/${{ env.PROGRAM_NAME }}-idl/target/idl/${{ env.PROGRAM_NAME }}.json"
214
214
215
215
- name : Write Program Buffer
216
- uses : Woody4618/github-action/.github/actions/write-program-buffer@v0.1.0
216
+ uses : Woody4618/github-action/.github/actions/write-program-buffer@main
217
217
id : program-buffer
218
218
if : inputs.deploy == 'true'
219
219
with :
@@ -224,7 +224,7 @@ jobs:
224
224
buffer-authority-address : ${{ inputs.use-squads == 'true' && env.MULTISIG_VAULT || env.DEPLOYER_ADDRESS }}
225
225
226
226
- name : Write IDL Buffer
227
- uses : Woody4618/github-action/.github/actions/write-idl-buffer@v0.1.0
227
+ uses : Woody4618/github-action/.github/actions/write-idl-buffer@main
228
228
id : idl-buffer
229
229
if : inputs.upload_idl == 'true'
230
230
with :
@@ -235,7 +235,7 @@ jobs:
235
235
idl-authority : ${{ inputs.use-squads == 'true' && env.MULTISIG_VAULT || env.DEPLOYER_ADDRESS }}
236
236
237
237
- name : Program Upgrade
238
- uses : Woody4618/github-action/.github/actions/program-upgrade@v0.1.0
238
+ uses : Woody4618/github-action/.github/actions/program-upgrade@main
239
239
if : inputs.deploy == 'true' && inputs.use-squads == 'false'
240
240
with :
241
241
program-id : ${{ env.PROGRAM_ID }}
@@ -246,7 +246,7 @@ jobs:
246
246
program-keypair : ${{ secrets.PROGRAM_ADDRESS_KEYPAIR }}
247
247
248
248
- name : IDL Upload
249
- uses : Woody4618/github-action/.github/actions/idl-upload@v0.1.0
249
+ uses : Woody4618/github-action/.github/actions/idl-upload@main
250
250
if : inputs.upload_idl == 'true' && inputs.use-squads == 'false'
251
251
with :
252
252
program-id : ${{ env.PROGRAM_ID }}
@@ -255,7 +255,7 @@ jobs:
255
255
idl-buffer : ${{ steps.idl-buffer.outputs.buffer }}
256
256
257
257
- name : Verify Build
258
- uses : Woody4618/github-action/.github/actions/verify-build@v0.1.0
258
+ uses : Woody4618/github-action/.github/actions/verify-build@main
259
259
id : verify-build
260
260
if : inputs.verify == 'true'
261
261
with :
0 commit comments