Skip to content

Commit e8241c3

Browse files
authored
Merge pull request #2 from solana-developers/update-retry
Update retry action
2 parents 113461b + bc896e0 commit e8241c3

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

idl-upload/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
DEPLOY_KEYPAIR: ${{ inputs.keypair }}
2424

2525
- name: Upload IDL
26-
uses: nick-invision/retry@v2
26+
uses: nick-fields/retry@v2
2727
with:
2828
timeout_minutes: 10
2929
max_attempts: 50

program-upgrade/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ runs:
4444
4545
- name: Deploy new program
4646
if: steps.check-program.outputs.exists == 'false'
47-
uses: nick-invision/retry@v2
47+
uses: nick-fields/retry@v2
4848
with:
4949
timeout_minutes: 10
5050
max_attempts: 3
@@ -60,7 +60,7 @@ runs:
6060
6161
- name: Upgrade existing program
6262
if: steps.check-program.outputs.exists == 'true'
63-
uses: nick-invision/retry@v2
63+
uses: nick-fields/retry@v2
6464
with:
6565
timeout_minutes: 10
6666
max_attempts: 3

write-idl-buffer/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ runs:
4444
- name: Write IDL buffer
4545
id: write-buffer
4646
if: steps.check-idl.outputs.exists == 'true'
47-
uses: nick-invision/retry@v2
47+
uses: nick-fields/retry@v2
4848
with:
4949
timeout_minutes: 5
5050
max_attempts: 3
@@ -75,7 +75,7 @@ runs:
7575
7676
- name: Set Buffer Authority
7777
if: steps.write-buffer.outputs.buffer != ''
78-
uses: nick-invision/retry@v2
78+
uses: nick-fields/retry@v2
7979
with:
8080
timeout_minutes: 5
8181
max_attempts: 3
@@ -91,7 +91,7 @@ runs:
9191
9292
- name: Set Program IDL Authority
9393
if: steps.write-buffer.outputs.buffer != ''
94-
uses: nick-invision/retry@v2
94+
uses: nick-fields/retry@v2
9595
with:
9696
timeout_minutes: 5
9797
max_attempts: 3

write-program-buffer/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ runs:
8888
8989
- name: Write program buffer
9090
id: write-buffer
91-
uses: nick-invision/retry@v2
91+
uses: nick-fields/retry@v2
9292
with:
9393
timeout_minutes: 60
9494
max_attempts: 3
@@ -128,7 +128,7 @@ runs:
128128
# If the deploy fails you can also close the buffer with the multisig using the cli command squad-closebuffer
129129
- name: Transfer buffer authority
130130
if: steps.check-program.outputs.exists == 'true'
131-
uses: nick-invision/retry@v2
131+
uses: nick-fields/retry@v2
132132
with:
133133
timeout_minutes: 10
134134
max_attempts: 50

0 commit comments

Comments
 (0)