Skip to content

Commit f66625f

Browse files
committed
Undo dependencies target ref misshap.
1 parent 2c4a26f commit f66625f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/dependencies.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@ on:
77

88
jobs:
99
update_version:
10-
# Pushes new refs to interested external repositories, so they can do early testing against them.
10+
# Pushes new refs to interested external repositorysitories, so they can do early testing against them.
1111
runs-on: ubuntu-latest
12-
name: Update libp2p's version for ${{ matrix.target.repo }} from ${{ matrix.target.source_ref }}
12+
name: Update libp2p's version for ${{ matrix.target.repository }} from ${{ matrix.target.ref }}
1313
strategy:
1414
fail-fast: false
1515
matrix:
1616
target: [
17-
{ repo: status-im/nimbus-eth2, source_ref: master },
18-
{ repo: waku-org/nwaku, source_ref: master },
19-
{ repo: codex-storage/nim-codex, source_ref: master }
17+
{ repository: status-im/nimbus-eth2, ref: unstable },
18+
{ repository: waku-org/nwaku, ref: master },
19+
{ repository: codex-storage/nim-codex, ref: master }
2020
]
2121
steps:
22-
- name: Clone repo
22+
- name: Clone repository
2323
uses: actions/checkout@v4
2424
with:
25-
repository: ${{ matrix.target.repo }}
26-
ref: ${{ matrix.target.source_ref}}
25+
repositorysitory: ${{ matrix.target.repository }}
26+
ref: ${{ matrix.target.ref}}
2727
path: nbc
2828
fetch-depth: 0
2929
token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)