diff --git a/packages/solana-container/version.js b/packages/solana-container/version.js
index 787dc6d..f56946a 100644
--- a/packages/solana-container/version.js
+++ b/packages/solana-container/version.js
@@ -1,4 +1,4 @@
 // renovate: datasource=github-releases depName=solana-labs/solana
-const SOLANA_VERSION = '1.17.26';
+const SOLANA_VERSION = '1.18.6';
 
 module.exports = SOLANA_VERSION;
diff --git a/packages/solana-testcontainers/index.ts b/packages/solana-testcontainers/index.ts
index 3716c0e..0e21863 100644
--- a/packages/solana-testcontainers/index.ts
+++ b/packages/solana-testcontainers/index.ts
@@ -1,7 +1,7 @@
 import { AbstractStartedContainer, GenericContainer, StartedTestContainer, Wait } from 'testcontainers';
 
 // renovate: datasource=github-releases depName=solana-labs/solana
-const SOLANA_VERSION = '1.17.26';
+const SOLANA_VERSION = '1.18.6';
 
 export class SolanaContainer extends GenericContainer {
   constructor(image: string = `ghcr.io/fuxingloh/solana-container:${SOLANA_VERSION}`) {