Skip to content

Commit 9cde04e

Browse files
author
Tyler Titsworth
authored
Merge branch 'main' into tylertitsworth/run-merge-logs-on-failure
2 parents c8159c3 + a885c66 commit 9cde04e

12 files changed

+22
-22
lines changed

.github/workflows/apptainer-ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
3535
with:
3636
egress-policy: audit
37-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
37+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3838
with:
3939
fetch-depth: 0
4040
- name: Output Modified Group Directories
@@ -77,7 +77,7 @@ jobs:
7777
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
7878
with:
7979
egress-policy: audit
80-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
80+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
8181
- uses: eWaterCycle/setup-apptainer@4bb22c52d4f63406c49e94c804632975787312b3 # v2.0.0
8282
with:
8383
apptainer-version: 1.3.4

.github/workflows/chart-ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
3030
with:
3131
egress-policy: audit
32-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
32+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3333
- uses: intel/ai-containers/workflows/charts@main
3434
with:
3535
kubeconfig_path: ${{ secrets.KUBECONFIG_PATH }}

.github/workflows/container-ci.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
7070
with:
7171
egress-policy: audit
72-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
72+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
7373
- name: Set Matrix
7474
id: build-matrix
7575
run: echo "matrix=$(jq -c . < ${{ inputs.group_dir }}/.actions.json)" >> $GITHUB_OUTPUT
@@ -87,7 +87,7 @@ jobs:
8787
group: ${{ steps.build-group.outputs.container-group }}
8888
steps:
8989
- uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
90-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
90+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
9191
if: ${{ !inputs.no_build }}
9292
- uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
9393
with:
@@ -139,7 +139,7 @@ jobs:
139139
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
140140
with:
141141
egress-policy: audit
142-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
142+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
143143
- uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
144144
with:
145145
registry: ${{ secrets.REGISTRY }}
@@ -155,7 +155,7 @@ jobs:
155155
- name: Cleanup
156156
if: always()
157157
run: docker rmi -f ${{ secrets.REGISTRY }}/${{ secrets.REPO }}:${{ matrix.container }}
158-
- uses: github/codeql-action/upload-sarif@294a9d92911152fe08befb9ec03e240add280cb3 # v3.26.8
158+
- uses: github/codeql-action/upload-sarif@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # v3.26.10
159159
with:
160160
sarif_file: '${{ matrix.container }}-scan.sarif'
161161
category: '${{ matrix.container }}'
@@ -173,7 +173,7 @@ jobs:
173173
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
174174
with:
175175
egress-policy: audit
176-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
176+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
177177
- name: Get Recipes
178178
id: test-matrix
179179
run: echo "matrix=$(find ${{ inputs.group_dir }} -type f -name 'tests.yaml' -exec dirname {} \; | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
@@ -190,7 +190,7 @@ jobs:
190190
- uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
191191
with:
192192
egress-policy: audit
193-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
193+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
194194
- uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
195195
with:
196196
registry: ${{ secrets.REGISTRY }}

.github/workflows/dependency-review.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
api.github.com:443
4343
api.securityscorecards.dev:443
4444
github.com:443
45-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
45+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
4646
- uses: actions/dependency-review-action@5a2ce3f5b92ee19cbb1541a4984c76d921601d7c # v4.3.4
4747
with:
4848
comment-summary-in-pr: true

.github/workflows/dockerhub-description.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
2828
with:
2929
egress-policy: audit
30-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
30+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3131
- name: Set matrix data
3232
id: set-matrix
3333
run: echo "matrix=$(jq -c . < .github/dockerhub-readmes.json)" >> $GITHUB_OUTPUT
@@ -42,7 +42,7 @@ jobs:
4242
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
4343
with:
4444
egress-policy: audit
45-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
45+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
4646
- uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae # v4.0.0
4747
with:
4848
username: ${{ secrets.DOCKERHUB_USERNAME }}

.github/workflows/docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
files.pythonhosted.org:443
4141
github.com:443
4242
pypi.org:443
43-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
43+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
4444
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
4545
with:
4646
python-version: 3.8

.github/workflows/integration-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
egress-policy: block
3232
allowed-endpoints: >
3333
github.com:443
34-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
34+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3535
with:
3636
fetch-depth: 0
3737
- name: Output Modified Group Directories

.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
allowed-endpoints: >
3737
api.github.com:443
3838
github.com:443
39-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
39+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
4040
with:
4141
fetch-depth: 0
4242
- uses: super-linter/super-linter/slim@b4515bd4ad9d0aa4681960e053916ab991bdbe96 # v6.8.0

.github/workflows/scorecard.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
rekor.sigstore.dev:443
5555
tuf-repo-cdn.sigstore.dev:443
5656
www.bestpractices.dev:443
57-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
57+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
5858
with:
5959
persist-credentials: false
6060
- uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
@@ -68,6 +68,6 @@ jobs:
6868
name: SARIF file
6969
path: results.sarif
7070
retention-days: 5
71-
- uses: github/codeql-action/upload-sarif@294a9d92911152fe08befb9ec03e240add280cb3 # v3.26.8
71+
- uses: github/codeql-action/upload-sarif@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # v3.26.10
7272
with:
7373
sarif_file: results.sarif

.github/workflows/test-runner-ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
3737
with:
3838
egress-policy: audit
39-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
39+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
4040
- uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
4141
with:
4242
driver: docker
@@ -86,7 +86,7 @@ jobs:
8686
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
8787
with:
8888
egress-policy: audit
89-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
89+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
9090
- uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
9191
with:
9292
driver: docker

.github/workflows/weekly-test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
egress-policy: block
3131
allowed-endpoints: >
3232
github.com:443
33-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
33+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3434
- name: Output Group Directories
3535
id: group-list
3636
run: |
@@ -60,7 +60,7 @@ jobs:
6060
# uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
6161
# with:
6262
# egress-policy: audit
63-
# - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
63+
# - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
6464
# with:
6565
# fetch-depth: 0
6666
# - uses: intel/ai-containers/workflows/charts@main

docs/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
mkdocs-callouts>=1.13.2
22
mkdocs-git-authors-plugin>=0.8.0
33
mkdocs-git-revision-date-localized-plugin>=1.2.5
4-
mkdocs-material==9.5.36
4+
mkdocs-material==9.5.39
55
mkdocs-table-reader-plugin>=2.1.0
66
mkdocs==1.6.1
77
pandas>=2.0.3

0 commit comments

Comments
 (0)