This repository was archived by the owner on Sep 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed
Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 3030 runs-on : ubuntu-latest
3131 steps :
3232 - name : " Harden Runner"
33- uses : step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
33+ uses : step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
3434 with :
3535 egress-policy : audit # TODO: change to 'egress-policy: block' after couple of runs
3636
Original file line number Diff line number Diff line change 3333 runs-on : ubuntu-latest
3434 steps :
3535 - name : " Harden Runner"
36- uses : step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
36+ uses : step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
3737 with :
3838 egress-policy : audit # TODO: change to 'egress-policy: block' after couple of runs
3939 - name : " Checkout"
Original file line number Diff line number Diff line change 5959 tox -e mypy
6060 steps :
6161 - name : " Harden Runner"
62- uses : step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
62+ uses : step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
6363 with :
6464 egress-policy : audit # TODO: change to 'egress-policy: block' after couple of runs
6565
Original file line number Diff line number Diff line change 3535 runs-on : ubuntu-latest
3636 steps :
3737 - name : " Harden Runner"
38- uses : step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
38+ uses : step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
3939 with :
4040 egress-policy : audit # TODO: change to 'egress-policy: block' after couple of runs
4141
6565
6666 steps :
6767 - name : " Harden Runner"
68- uses : step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
68+ uses : step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
6969 with :
7070 egress-policy : audit # TODO: change to 'egress-policy: block' after couple of runs
7171
9797
9898 steps :
9999 - name : " Harden Runner"
100- uses : step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
100+ uses : step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
101101 with :
102102 egress-policy : audit # TODO: change to 'egress-policy: block' after couple of runs
103103
Original file line number Diff line number Diff line change 4848 - " ubuntu-latest"
4949 steps :
5050 - name : " Harden Runner"
51- uses : step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
51+ uses : step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
5252 with :
5353 egress-policy : audit # TODO: change to 'egress-policy: block' after couple of runs
5454
Original file line number Diff line number Diff line change @@ -31,19 +31,19 @@ def test_schema_base(self) -> None:
3131 versions = schema_versions ()
3232 assert_that (versions ).is_not_none ().is_not_empty ()
3333 for i in range (len (versions )):
34- version = base .joinpath (f"v{ i + 1 } " )
34+ version = base .joinpath (f"v{ i + 1 } " )
3535 self ._load_schemas (version )
3636
3737 def test_schema_versions (self ) -> None :
3838 versions = schema_versions ()
3939 assert_that (versions ).is_not_none ().is_not_empty ()
4040 for i , version in enumerate (versions ):
41- assert_that (version ).has_name (f"v{ i + 1 } " )
41+ assert_that (version ).has_name (f"v{ i + 1 } " )
4242 self ._load_schemas (version )
4343
4444 def test_importlib_schema (self ) -> None :
4545 versions = schema_versions ()
4646 assert_that (versions ).is_not_none ().is_not_empty ()
4747 for i in range (len (versions )):
48- version = importlib .resources .files (f"instructlab.schema.v{ i + 1 } " )
48+ version = importlib .resources .files (f"instructlab.schema.v{ i + 1 } " )
4949 self ._load_schemas (version )
You can’t perform that action at this time.
0 commit comments