code-foundry 0.22.0 → 0.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/code-foundry.yml +1 -1
- package/.github/workflows/ci.yml +3 -2
- package/.github/workflows/codeql.yml +3 -2
- package/.github/workflows/draft-pr.yml +3 -1
- package/.github/workflows/release-pr.yml +3 -1
- package/.github/workflows/release.yml +3 -1
- package/.github/workflows/security.yml +3 -2
- package/.github/workflows/test.yml +4 -2
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/.github/template.yml +0 -4
package/.github/code-foundry.yml
CHANGED
package/.github/workflows/ci.yml
CHANGED
|
@@ -13,8 +13,9 @@ permissions:
|
|
|
13
13
|
jobs:
|
|
14
14
|
ci:
|
|
15
15
|
name: CI
|
|
16
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-ci.yml@v0.
|
|
16
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-ci.yml@v0.22.0
|
|
17
17
|
with:
|
|
18
18
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
-
runtime-ref: v0.
|
|
19
|
+
runtime-ref: v0.22.0
|
|
20
|
+
runner: ubuntu-latest
|
|
20
21
|
secrets: inherit
|
|
@@ -18,8 +18,9 @@ permissions:
|
|
|
18
18
|
jobs:
|
|
19
19
|
codeql:
|
|
20
20
|
name: CodeQL
|
|
21
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-codeql.yml@v0.
|
|
21
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-codeql.yml@v0.22.0
|
|
22
22
|
with:
|
|
23
23
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
24
|
-
runtime-ref: v0.
|
|
24
|
+
runtime-ref: v0.22.0
|
|
25
|
+
runner: ubuntu-latest
|
|
25
26
|
secrets: inherit
|
|
@@ -18,5 +18,7 @@ permissions:
|
|
|
18
18
|
jobs:
|
|
19
19
|
draft-pr:
|
|
20
20
|
name: Draft PR
|
|
21
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-draft-pr.yml@v0.
|
|
21
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-draft-pr.yml@v0.22.0
|
|
22
|
+
with:
|
|
23
|
+
runner: ubuntu-slim
|
|
22
24
|
secrets: inherit
|
|
@@ -11,5 +11,7 @@ permissions:
|
|
|
11
11
|
jobs:
|
|
12
12
|
release-pr:
|
|
13
13
|
name: Release PR
|
|
14
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-release-pr.yml@v0.
|
|
14
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-release-pr.yml@v0.22.0
|
|
15
|
+
with:
|
|
16
|
+
runner: ubuntu-slim
|
|
15
17
|
secrets: inherit
|
|
@@ -14,5 +14,7 @@ permissions:
|
|
|
14
14
|
jobs:
|
|
15
15
|
release:
|
|
16
16
|
name: Release
|
|
17
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-release.yml@v0.
|
|
17
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-release.yml@v0.22.0
|
|
18
|
+
with:
|
|
19
|
+
runner: ubuntu-slim
|
|
18
20
|
secrets: inherit
|
|
@@ -13,8 +13,9 @@ permissions:
|
|
|
13
13
|
jobs:
|
|
14
14
|
security:
|
|
15
15
|
name: Security
|
|
16
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-security.yml@v0.
|
|
16
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-security.yml@v0.22.0
|
|
17
17
|
with:
|
|
18
18
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
-
runtime-ref: v0.
|
|
19
|
+
runtime-ref: v0.22.0
|
|
20
|
+
runner: ubuntu-slim
|
|
20
21
|
secrets: inherit
|
|
@@ -13,8 +13,10 @@ permissions:
|
|
|
13
13
|
jobs:
|
|
14
14
|
test:
|
|
15
15
|
name: Test
|
|
16
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-test.yml@v0.
|
|
16
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-test.yml@v0.22.0
|
|
17
17
|
with:
|
|
18
18
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
-
runtime-ref: v0.
|
|
19
|
+
runtime-ref: v0.22.0
|
|
20
|
+
runner: ubuntu-latest
|
|
21
|
+
unit-runner: ubuntu-slim
|
|
20
22
|
secrets: inherit
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.22.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.22.0...v0.22.1) (2026-07-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* pin callers to the canonical runtime ([321b93f](https://github.com/0xPlayerOne/code-foundry/commit/321b93fff2089ee61fa41f968ee584af864692b2))
|
|
9
|
+
|
|
3
10
|
## [0.22.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.21.2...v0.22.0) (2026-07-28)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
package/.github/template.yml
DELETED