Skip to content

Commit 376c71a

Browse files
chore: consolidate Dependabot updates #70-#75 and fix monitoring TS6 build (#76)
Consolidated dependency updates from #70-#75, TypeScript 6 compatibility fixes, monitoring package API implementation, and off-repo deploy configuration.
1 parent 54c5719 commit 376c71a

35 files changed

Lines changed: 3280 additions & 5721 deletions

.github/workflows/api-docs-pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
4949
- name: Configure Pages
5050
if: steps.pages_check.outputs.enabled == 'true'
51-
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
51+
uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0
5252
with:
5353
enablement: true
5454

@@ -98,14 +98,14 @@ jobs:
9898
9999
- name: Upload Pages artifact
100100
if: steps.pages_check.outputs.enabled == 'true'
101-
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
101+
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
102102
with:
103103
path: .pages-site
104104

105105
- name: Deploy to GitHub Pages
106106
if: steps.pages_check.outputs.enabled == 'true'
107107
id: deployment
108-
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4
108+
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0
109109

110110
- name: Skip deploy when Pages is disabled
111111
if: steps.pages_check.outputs.enabled != 'true'

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
python-version: '3.12'
4949

5050
- name: Set up Go
51-
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417
51+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c
5252
with:
5353
go-version-file: go.mod
5454

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ jobs:
3434
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
3535

3636
- name: Initialize CodeQL
37-
uses: github/codeql-action/init@b1bff81932f5cdfc8695c7752dcee935dcd061c8
37+
uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13
3838
with:
3939
languages: ${{ matrix.language }}
4040
config-file: ./.github/codeql/codeql-config.yml
4141
queries: security-extended,security-and-quality
4242

4343
- name: Setup Go
4444
if: matrix.language == 'go'
45-
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417
45+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c
4646
with:
4747
go-version-file: go.mod
4848

@@ -60,9 +60,9 @@ jobs:
6060

6161
# Autobuild for Go, JavaScript, Python
6262
- name: Autobuild
63-
uses: github/codeql-action/autobuild@b1bff81932f5cdfc8695c7752dcee935dcd061c8
63+
uses: github/codeql-action/autobuild@c10b8064de6f491fea524254123dbe5e09572f13
6464

6565
- name: Perform CodeQL Analysis
66-
uses: github/codeql-action/analyze@b1bff81932f5cdfc8695c7752dcee935dcd061c8
66+
uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13
6767
with:
6868
category: "/language:${{matrix.language}}"

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ jobs:
441441
442442
- name: Configure AWS Credentials
443443
if: steps.phase3d_inputs.outputs.ready == 'true'
444-
uses: aws-actions/configure-aws-credentials@b1257c400167d727708335212f95607835cd03fd
444+
uses: aws-actions/configure-aws-credentials@51635dbf418c2cdd8b3e1497529334d8db7e4063
445445
with:
446446
role-to-assume: ${{ secrets.AWS_DEPLOY_ROLE_ARN }}
447447
aws-region: ${{ secrets.AWS_REGION }}
@@ -493,7 +493,7 @@ jobs:
493493
494494
- name: Configure AWS Credentials
495495
if: steps.cdn_inputs.outputs.ready == 'true'
496-
uses: aws-actions/configure-aws-credentials@b1257c400167d727708335212f95607835cd03fd
496+
uses: aws-actions/configure-aws-credentials@51635dbf418c2cdd8b3e1497529334d8db7e4063
497497
with:
498498
role-to-assume: ${{ secrets.AWS_DEPLOY_ROLE_ARN }}
499499
aws-region: ${{ secrets.AWS_REGION }}

.github/workflows/opencv-go-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
3434

3535
- name: Set up Go
36-
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417
36+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c
3737
with:
3838
go-version-file: go.mod
3939
cache: true

.github/workflows/phase3d-production-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
4141

4242
- name: Configure AWS Credentials
43-
uses: aws-actions/configure-aws-credentials@b1257c400167d727708335212f95607835cd03fd
43+
uses: aws-actions/configure-aws-credentials@51635dbf418c2cdd8b3e1497529334d8db7e4063
4444
with:
4545
role-to-assume: ${{ secrets.AWS_DEPLOY_ROLE_ARN }}
4646
aws-region: ${{ secrets.AWS_REGION }}

.github/workflows/reproducibility-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2828

2929
- name: Setup Go
30-
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
30+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
3131
with:
3232
go-version-file: go.mod
3333

.github/workflows/sdk-channels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
8383

8484
- name: Create deployment
85-
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b
85+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd
8686
with:
8787
script: |
8888
const deployment = await github.rest.repos.createDeployment({
@@ -105,7 +105,7 @@ jobs:
105105
106106
- name: Comment on commit
107107
if: success()
108-
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b
108+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd
109109
with:
110110
script: |
111111
github.rest.issues.createComment({

.github/workflows/sdk-provenance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
cat /tmp/provenance.json
102102
103103
- name: Upload provenance as artifact
104-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
104+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
105105
with:
106106
name: provenance-record
107107
path: /tmp/provenance.json
@@ -165,7 +165,7 @@ jobs:
165165
cat /tmp/slsa-report.md
166166
167167
- name: Upload SLSA report
168-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
168+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
169169
with:
170170
name: slsa-compliance
171171
path: /tmp/slsa-report.md

.github/workflows/sdk-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
run: bash scripts/generate-release-notes.sh ${{ steps.version.outputs.sdk_version }} | tee /tmp/release-notes.md
9696
- name: Create GitHub Release with SBOM
9797
if: steps.npm_token.outputs.present == 'true' && github.event_name == 'push'
98-
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
98+
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe
9999
with:
100100
tag_name: v${{ steps.version.outputs.sdk_version }}
101101
name: v${{ steps.version.outputs.sdk_version }}

0 commit comments

Comments
 (0)