Skip to content

Commit

Permalink
Pin to GitHub actions macos-13 runner for now. (#238)
Browse files Browse the repository at this point in the history
* Pin to GitHub actions macos-13 runner for now.

Signed-off-by: pfeairheller <[email protected]>

* Update references to TraitCodex

Signed-off-by: pfeairheller <[email protected]>

---------

Signed-off-by: pfeairheller <[email protected]>
  • Loading branch information
pfeairheller authored Apr 30, 2024
1 parent 4217166 commit 8cf33f2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ macos-latest, ubuntu-latest ]
os: [ macos-13, ubuntu-latest ]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion src/keria/testing/testing_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from keri.core.coring import MtrDex
from keri.core.eventing import SealEvent
from keri.help import helping
from keri.kering import TraitCodex
from keri.vc import proving
from keri.vdr import credentialing, verifying
from keri.vdr import eventing as veventing
Expand Down Expand Up @@ -477,7 +478,7 @@ def createRegistry(client, agent, salt, doist, deeds):
baks=[],
toad="0",
nonce=nonce,
cnfg=[eventing.TraitCodex.NoBackers],
cnfg=[TraitCodex.NoBackers],
code=coring.MtrDex.Blake3_256)
anchor = dict(i=regser.ked['i'], s=regser.ked["s"], d=regser.said)
serder, sigers = Helpers.interact(pre=pre, bran=salt, pidx=0, ridx=0, dig=aid['d'], sn='1', data=[anchor])
Expand Down
3 changes: 2 additions & 1 deletion tests/app/test_credentialing.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
from hio.base import doing
from keri.app import habbing
from keri.core import scheming, coring, parsing, serdering
from keri.core.eventing import TraitCodex, SealEvent
from keri.core.eventing import SealEvent
from keri.kering import TraitCodex
from keri.vc import proving
from keri.vdr import eventing
from keri.vdr.credentialing import Regery, Registrar
Expand Down
4 changes: 2 additions & 2 deletions tests/app/test_ipexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from keri.app import habbing, signing
from keri.core import eventing, coring, serdering
from keri.help import helping
from keri.kering import Roles
from keri.kering import Roles, TraitCodex
from keri.peer import exchanging
from keri.vc import proving
from keri.vdr import eventing as veventing
Expand Down Expand Up @@ -606,7 +606,7 @@ def test_multisig_grant_admit(seeder, helpers):
baks=[],
toad="0",
nonce=nonce,
cnfg=[eventing.TraitCodex.NoBackers],
cnfg=[TraitCodex.NoBackers],
code=coring.MtrDex.Blake3_256)

anchor = dict(i=regser.ked['i'], s=regser.ked["s"], d=regser.said)
Expand Down

0 comments on commit 8cf33f2

Please sign in to comment.