Skip to content

Commit 52240b3

Browse files
Bump github-actions to v0.2.10 for v0.3.5 release.
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 0851659 commit 52240b3

4 files changed

Lines changed: 22 additions & 18 deletions

File tree

.github/workflows/reusable-build.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@ jobs:
153153
echo "MULTISIG_VAULT=${{ secrets.DEVNET_MULTISIG_VAULT }}" >> $GITHUB_ENV
154154
fi
155155
156-
- uses: solana-developers/github-actions/extract-versions@v0.2.9
156+
- uses: solana-developers/github-actions/extract-versions@v0.2.10
157157
if: inputs.override-solana-version == '' || inputs.override-anchor-version == ''
158158
id: versions
159159

160-
- uses: solana-developers/github-actions/setup-all@v0.2.9
160+
- uses: solana-developers/github-actions/setup-all@v0.2.10
161161
id: setup
162162
with:
163163
solana_version: ${{ inputs.override-solana-version != '' &&
@@ -250,14 +250,14 @@ jobs:
250250
fi
251251
252252
- name: Build Anchor
253-
uses: solana-developers/github-actions/build-anchor@v0.2.9
253+
uses: solana-developers/github-actions/build-anchor@v0.2.10
254254
if: steps.check-anchor.outputs.is_anchor == 'true'
255255
with:
256256
program: ${{ env.PROGRAM_NAME }}
257257
features: ${{ inputs.features }}
258258

259259
- name: Build Verified
260-
uses: solana-developers/github-actions/build-verified@v0.2.9
260+
uses: solana-developers/github-actions/build-verified@v0.2.10
261261
id: build-verified
262262
with:
263263
program: ${{ env.PROGRAM_NAME }}
@@ -328,7 +328,7 @@ jobs:
328328
fi
329329
330330
- name: Write Program Buffer
331-
uses: solana-developers/github-actions/write-program-buffer@v0.2.9
331+
uses: solana-developers/github-actions/write-program-buffer@v0.2.10
332332
id: program-buffer
333333
if: inputs.deploy
334334
with:
@@ -341,7 +341,7 @@ jobs:
341341
priority-fee: ${{ inputs.priority-fee }}
342342

343343
- name: Write IDL Buffer (Anchor)
344-
uses: solana-developers/github-actions/write-idl-buffer@v0.2.9
344+
uses: solana-developers/github-actions/write-idl-buffer@v0.2.10
345345
id: idl-buffer
346346
if: inputs.upload_idl && !inputs.use-program-metadata-idl
347347
with:
@@ -353,7 +353,7 @@ jobs:
353353
env.DEPLOYER_ADDRESS }}
354354

355355
- name: Write Metadata Buffer (Program Metadata)
356-
uses: solana-developers/github-actions/write-metadata-buffer@v0.2.9
356+
uses: solana-developers/github-actions/write-metadata-buffer@v0.2.10
357357
id: metadata-buffer
358358
if: inputs.upload_idl && inputs.use-program-metadata-idl && inputs.use-squads
359359
with:
@@ -364,7 +364,7 @@ jobs:
364364
priority-fees: ${{ inputs.priority-fee }}
365365

366366
- name: Program Upgrade
367-
uses: solana-developers/github-actions/program-upgrade@v0.2.9
367+
uses: solana-developers/github-actions/program-upgrade@v0.2.10
368368
if: inputs.deploy && inputs.use-squads == false
369369
with:
370370
program-id: ${{ env.PROGRAM_ID }}
@@ -375,7 +375,7 @@ jobs:
375375
program-keypair: ${{ secrets.PROGRAM_ADDRESS_KEYPAIR }}
376376

377377
- name: IDL Upload (Anchor)
378-
uses: solana-developers/github-actions/idl-upload@v0.2.9
378+
uses: solana-developers/github-actions/idl-upload@v0.2.10
379379
if: inputs.upload_idl && !inputs.use-program-metadata-idl && inputs.use-squads
380380
== false
381381
with:
@@ -385,7 +385,7 @@ jobs:
385385
idl-buffer: ${{ steps.idl-buffer.outputs.buffer }}
386386

387387
- name: Metadata Upload (Program Metadata - direct)
388-
uses: solana-developers/github-actions/metadata-upload@v0.2.9
388+
uses: solana-developers/github-actions/metadata-upload@v0.2.10
389389
if: inputs.upload_idl && inputs.use-program-metadata-idl && inputs.use-squads ==
390390
false
391391
with:
@@ -397,7 +397,7 @@ jobs:
397397
priority-fees: ${{ inputs.priority-fee }}
398398

399399
- name: Metadata Upload (Program Metadata - Squads buffer)
400-
uses: solana-developers/github-actions/metadata-upload@v0.2.9
400+
uses: solana-developers/github-actions/metadata-upload@v0.2.10
401401
if: inputs.upload_idl && inputs.use-program-metadata-idl && inputs.use-squads
402402
with:
403403
program-id: ${{ env.PROGRAM_ID }}
@@ -415,7 +415,7 @@ jobs:
415415
run: sleep 14
416416

417417
- name: Verify Build
418-
uses: solana-developers/github-actions/verify-build@v0.2.9
418+
uses: solana-developers/github-actions/verify-build@v0.2.10
419419
id: verify-build
420420
if: inputs.verify
421421
with:

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121

22-
- uses: solana-developers/github-actions/extract-versions@v0.2.5
22+
- uses: solana-developers/github-actions/extract-versions@v0.2.10
2323
id: versions
2424

25-
- uses: solana-developers/github-actions/setup-all@v0.2.5
25+
- uses: solana-developers/github-actions/setup-all@v0.2.10
2626
with:
2727
solana_version: ${{ steps.versions.outputs.solana_version }}
2828
anchor_version: ${{ steps.versions.outputs.anchor_version }}
2929
node_version: 20
3030

31-
- uses: solana-developers/github-actions/run-tests@v0.2.5
31+
- uses: solana-developers/github-actions/run-tests@v0.2.10
3232
with:
3333
solana_version: ${{ steps.versions.outputs.solana_version }}
3434
anchor_version: ${{ steps.versions.outputs.anchor_version }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.5] - 2026-05-15
9+
10+
- Update all github-actions to v0.2.10
11+
812
## [0.3.1] - 2026-04-29
913

1014
- Update all github-actions to v0.2.9

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ on:
3838

3939
jobs:
4040
build:
41-
uses: solana-developers/github-workflows/.github/workflows/reusable-build.yaml@v0.2.9
41+
uses: solana-developers/github-workflows/.github/workflows/reusable-build.yaml@v0.3.5
4242
with:
4343
program: "hello_world"
4444
program-id: "YOUR_PROGRAM_ID"
@@ -70,7 +70,7 @@ on:
7070

7171
jobs:
7272
build:
73-
uses: solana-developers/github-workflows/.github/workflows/reusable-build.yaml@v0.2.9
73+
uses: solana-developers/github-workflows/.github/workflows/reusable-build.yaml@v0.3.5
7474
with:
7575
program: "transaction_example"
7676
program-id: "YOUR_PROGRAM_ID"
@@ -138,7 +138,7 @@ on:
138138

139139
jobs:
140140
test:
141-
uses: solana-developers/github-workflows/.github/workflows/test.yaml@v0.2.9
141+
uses: solana-developers/github-workflows/.github/workflows/test.yaml@v0.3.5
142142
with:
143143
program: ${{ 'transaction_example' }}
144144
```

0 commit comments

Comments
 (0)