Skip to content

Commit 642c103

Browse files
authored
Merge branch 'develop' into hotfix/method-id
2 parents 07eaf28 + 75abea8 commit 642c103

19 files changed

+1096
-223
lines changed

.github/workflows/issue-triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Add issue to project
1313
runs-on: ubuntu-20.04
1414
steps:
15-
- uses: actions/add-to-project@0609a2702eefb44781da00f8e04901d6e5cd2b92
15+
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e
1616
with:
1717
project-url: https://github.com/orgs/usnistgov/projects/25
1818
github-token: ${{ secrets.COMMIT_TOKEN }}

.github/workflows/periodic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
# Needed to post comments and issues
1313
issues: write
1414
steps:
15-
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1616
with:
1717
submodules: recursive
18-
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
18+
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
1919
with:
2020
node-version-file: "build/.nvmrc"
2121
cache: "npm"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Package Release
99
runs-on: ubuntu-22.04
1010
steps:
11-
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
11+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1212
with:
1313
submodules: recursive
1414
- uses: actions/setup-java@v4

.github/workflows/status.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
name: Status Checks
1919
runs-on: ubuntu-22.04
2020
steps:
21-
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
21+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2222
with:
2323
submodules: recursive
2424
- uses: actions/setup-java@v4
2525
with:
2626
distribution: "temurin"
2727
java-version: "17"
28-
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
28+
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
2929
with:
3030
node-version-file: "build/.nvmrc"
3131
cache: "npm"

CONTRIBUTING.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ All requests for changes and enhancements to OSCAL are initiated through the pro
4242
* [Defect Report](../../issues/new?template=bug_report.md&labels=bug): Use to report a problem with an existing OSCAL feature or capability.
4343
* [Question](../../issues/new?labels=question&template=question.md): Use to ask a question about OSCAL.
4444

45-
Issue triage is managed by the core OSCAL project team using a [specialized project board](../../projects/52).
46-
4745
The core OSCAL project team regularly reviews open issues, prioritizes their handling, and updates the issue statuses and comments as needed.
4846

4947
## Communications mechanisms

build/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16
1+
v20

build/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ $(LINKCHECK_OUTPUT): node_modules $(LINKCHECK_CONFIG)
153153
@mkdir -p $(GENERATED_DIR)
154154
@echo Checking Markdown links...
155155
cd ..; git ls-files -z "*.md" | \
156-
xargs -0 npx --prefix build/ markdown-link-check -c build/$(LINKCHECK_CONFIG) | \
156+
xargs -0n1 npx --prefix build/ markdown-link-check -c build/$(LINKCHECK_CONFIG) | \
157157
tee build/$(LINKCHECK_OUTPUT); \
158158
exit $${PIPESTATUS[1]}
159159

0 commit comments

Comments
 (0)