Skip to content

Commit 9d6b015

Browse files
Bump the major-minor-patch group across directory with 7 updates (#100)
1 parent 02d8926 commit 9d6b015

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666

6767
# Initializes the CodeQL tools for scanning.
6868
- name: Initialize CodeQL
69-
uses: github/codeql-action/init@1b168cd39490f61582a9beae412bb7057a6b2c4e # v4.31.8
69+
uses: github/codeql-action/init@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
7070
with:
7171
languages: ${{ matrix.language }}
7272
build-mode: ${{ matrix.build-mode }}
@@ -95,6 +95,6 @@ jobs:
9595
exit 1
9696
9797
- name: Perform CodeQL Analysis
98-
uses: github/codeql-action/analyze@1b168cd39490f61582a9beae412bb7057a6b2c4e # v4.31.8
98+
uses: github/codeql-action/analyze@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
9999
with:
100100
category: "/language:${{matrix.language}}"

.github/workflows/docker-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
# https://github.com/docker/login-action
5555
- name: Log into registry ${{ env.REGISTRY }}
5656
if: github.event_name != 'pull_request'
57-
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
57+
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
5858
with:
5959
registry: ${{ env.REGISTRY }}
6060
username: ${{ github.actor }}
@@ -83,7 +83,7 @@ jobs:
8383
# https://github.com/docker/build-push-action
8484
- name: Build and push Docker image
8585
id: build-and-push
86-
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
86+
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
8787
with:
8888
sbom: true
8989
provenance: mode=max
@@ -99,7 +99,7 @@ jobs:
9999
# This automaticaly re-uses the previously generated stage from cache, so we get the exact sbom from previous build step
100100
- name: Export Application SBOM from artifact stage
101101
if: ${{ github.event_name != 'pull_request' }}
102-
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
102+
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
103103
with:
104104
context: ${{ env.BUILD_CONTEXT }}
105105
file: ${{ env.DOCKERFILE_PATH }}
@@ -118,7 +118,7 @@ jobs:
118118
# Generate container SBOM.
119119
- name: Run Trivy in GitHub SBOM mode to generate CycloneDX SBOM for container
120120
if: ${{ github.event_name != 'pull_request' }}
121-
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # 0.35.0
121+
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # 0.36.0
122122
with:
123123
scan-type: 'image'
124124
format: 'cyclonedx'
@@ -128,7 +128,7 @@ jobs:
128128

129129
- name: Upload trivy/container AND application SBOMs as a Github artifact
130130
if: ${{ github.event_name != 'pull_request' }}
131-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
131+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
132132
with:
133133
name: sbom
134134
path: '${{ github.workspace }}/sbom-output/'

.github/workflows/dotnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: dotnet test ${{ env.MODULE_TEST_PROJECT }} --configuration Release --no-build --logger "trx;LogFileName=module_test_results.trx" --collect:"XPlat Code Coverage" --settings source/coverlet.runsettings
5858

5959
- name: Publish Test Results
60-
uses: dorny/test-reporter@3d76b34a4535afbd0600d347b09a6ee5deb3ed7f # v2.6.0
60+
uses: dorny/test-reporter@a43b3a5f7366b97d083190328d2c652e1a8b6aa2 # v3.0.0
6161
id: test-results
6262
if: github.event.pull_request.head.repo.fork == false
6363
with:
@@ -128,21 +128,21 @@ jobs:
128128
129129
- name: Add PR Comment
130130
if: github.event.pull_request.head.repo.fork == false
131-
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
131+
uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4
132132
with:
133133
recreate: true
134134
path: results.md
135135

136136
- name: Upload TRX as artifact
137137
if: always()
138-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
138+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
139139
with:
140140
name: dotnet-test-results
141141
path: "**/*_test_results.trx"
142142

143143
- name: Upload Code Coverage as artifact
144144
if: always()
145-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
145+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
146146
with:
147147
name: dotnet-code-coverage
148148

.github/workflows/playwright-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
BASE_URL: ${{ env.BASE_URL }}
138138

139139
- name: Publish Test Results
140-
uses: dorny/test-reporter@3d76b34a4535afbd0600d347b09a6ee5deb3ed7f # v2.6.0
140+
uses: dorny/test-reporter@a43b3a5f7366b97d083190328d2c652e1a8b6aa2 # v3.0.0
141141
if: github.event.pull_request.head.repo.fork == false
142142
with:
143143
name: Playwright Test Results
@@ -147,7 +147,7 @@ jobs:
147147

148148
- name: Upload TRX as artifact
149149
if: always()
150-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
150+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
151151
with:
152152
name: playwright-test-results
153153
path: "**/*playwright_test_results.trx"

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6565
# format to the repository Actions tab.
6666
- name: "Upload artifact"
67-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
67+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6868
with:
6969
name: SARIF file
7070
path: results.sarif
@@ -73,6 +73,6 @@ jobs:
7373
# Upload the results to GitHub's code scanning dashboard (optional).
7474
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7575
- name: "Upload to code-scanning"
76-
uses: github/codeql-action/upload-sarif@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
76+
uses: github/codeql-action/upload-sarif@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
7777
with:
7878
sarif_file: results.sarif

0 commit comments

Comments
 (0)