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
6 changes: 3 additions & 3 deletions .github/actions/fsat-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ inputs:
default: "lts/*"
just-version:
description: Just Version
default: "1.43.0"
default: "1.46.0"
k9s-version:
description: k9s Version
default: v0.50.15
default: v0.50.18
fabric-version:
description: Version of Hyperledger Fabric
default: "2.5.14"
ca-version:
description: Version of Hyperledger Fabric CA
default: "1.5.15"
default: "1.5.17"

runs:
using: "composite"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/test-network-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ inputs:
default: 2.5.14
ca-version:
description: Version of Hyperledger Fabric CA
default: 1.5.15
default: 1.5.17

runs:
using: "composite"
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ vendor/
.idea
# Dependency directories
node_modules/
package-lock.json
# Ignore Gradle build output directory
build
# Ignore Maven build output directory
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import js from '@eslint/js';
import { defineConfig } from 'eslint/config';
import tseslint from 'typescript-eslint';

export default tseslint.config(js.configs.recommended, ...tseslint.configs.strictTypeChecked, {
export default defineConfig(js.configs.recommended, ...tseslint.configs.strictTypeChecked, {
languageOptions: {
ecmaVersion: 2023,
sourceType: 'module',
Expand Down
Loading
Loading