Skip to content

Commit

Permalink
ci: fix git checkout path and update setup-node (#1709)
Browse files Browse the repository at this point in the history
  • Loading branch information
genaris committed Jan 28, 2024
1 parent bdf5e02 commit 60c51c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Release Canary
if: "!startsWith(github.event.head_commit.message, 'chore(release): v')"
steps:
- name: Checkout agent-framework-javascript
- name: Checkout credo-ts
uses: actions/checkout@v4
with:
# pulls all commits (needed for lerna to correctly version)
Expand All @@ -25,7 +25,7 @@ jobs:
uses: ./.github/actions/setup-libindy

- name: Setup NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
uses: ./.github/actions/setup-libindy

- name: Setup NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
TEST_AGENT_PUBLIC_DID_SEED: 000000000000000000000000Trustee9
ENDORSER_AGENT_PUBLIC_DID_SEED: 00000000000000000000000Endorser9
GENESIS_TXN_PATH: network/genesis/local-genesis.txn
LIB_INDY_STRG_POSTGRES: /home/runner/work/agent-framework-javascript/indy-sdk/experimental/plugins/postgres_storage/target/release # for Linux
LIB_INDY_STRG_POSTGRES: /home/runner/work/credo-ts/indy-sdk/experimental/plugins/postgres_storage/target/release # for Linux
NODE_OPTIONS: --max_old_space_size=6144

# Make sure we're not running multiple release steps at the same time as this can give issues with determining the next npm version to release.
Expand Down Expand Up @@ -50,15 +50,15 @@ jobs:
runs-on: ubuntu-20.04
name: Validate
steps:
- name: Checkout agent-framework-javascript
- name: Checkout credo-ts
uses: actions/checkout@v4

# setup dependencies
- name: Setup Libindy
uses: ./.github/actions/setup-libindy

- name: Setup NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
uses: ./.github/actions/setup-postgres-wallet-plugin

- name: Setup NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
uses: ./.github/actions/setup-libindy

- name: Setup NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
Expand Down

0 comments on commit 60c51c2

Please sign in to comment.