Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [main]

env:
ANCHOR_VERSION: 0.30.0
ANCHOR_VERSION: 0.30.1
NODE_VERSION : 20
SOLANA_VERSION: 1.18.18
TOOLCHAIN: 1.81.0
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
project: ["counter-anchor", "counter-shank"]
solana: ["1.17.34", "1.18.18"]
include:
- anchor: "0.30.0"
- anchor: "0.30.1"
project: "counter-anchor"
solana: "1.18.18"
- anchor: "0.29.0"
Expand Down Expand Up @@ -75,6 +75,7 @@ jobs:
- name: Install Solana
uses: solana-program/actions/install-solana@v1
with:
base_url: "https://release.anza.xyz"
version: ${{ matrix.solana }}
- name: Install Rustfmt
uses: dtolnay/rust-toolchain@master
Expand Down
2 changes: 1 addition & 1 deletion utils/solanaCli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export async function patchSolanaDependencies(
ctx: Pick<RenderContext, 'solanaVersion' | 'targetDirectory'>
): Promise<void> {
const patchMap: Record<VersionWithoutPatch, string[]> = {
'1.17': ['-p [email protected].11 --precise 0.8.6'],
'1.17': ['-p [email protected].12 --precise 0.8.6'],
};

const patches = patchMap[ctx.solanaVersion.withoutPatch] ?? [];
Expand Down
Loading