Skip to content

Commit da2db85

Browse files
authored
Merge pull request #762 from Wikid82/renovate/feature/beta-release-non-major-updates
fix(deps): update non-major-updates (feature/beta-release)
2 parents ac720f9 + ccdc719 commit da2db85

12 files changed

Lines changed: 27 additions & 25 deletions

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ jobs:
570570
# Generate SBOM (Software Bill of Materials) for supply chain security
571571
# Only for production builds (main/development) - feature branches use downstream supply-chain-pr.yml
572572
- name: Generate SBOM
573-
uses: anchore/sbom-action@28d71544de8eaf1b958d335707167c5f783590ad # v0.22.2
573+
uses: anchore/sbom-action@17ae1740179002c89186b61233e0f892c3118b11 # v0.23.0
574574
if: env.TRIGGER_EVENT != 'pull_request' && steps.skip.outputs.skip_build != 'true' && steps.skip.outputs.is_feature_push != 'true'
575575
with:
576576
image: ${{ env.GHCR_REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.build-and-push.outputs.digest }}

.github/workflows/nightly-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
echo "- ${{ env.GHCR_REGISTRY }}/${{ env.IMAGE_NAME }}:nightly@${{ steps.build.outputs.digest }}" >> "$GITHUB_STEP_SUMMARY"
221221
222222
- name: Generate SBOM
223-
uses: anchore/sbom-action@28d71544de8eaf1b958d335707167c5f783590ad # v0.22.2
223+
uses: anchore/sbom-action@17ae1740179002c89186b61233e0f892c3118b11 # v0.23.0
224224
with:
225225
image: ${{ env.GHCR_REGISTRY }}/${{ env.IMAGE_NAME }}:nightly@${{ steps.build.outputs.digest }}
226226
format: cyclonedx-json

.github/workflows/quality-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
ref: ${{ github.sha }}
2929

3030
- name: Set up Go
31-
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
31+
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
3232
with:
3333
go-version: ${{ env.GO_VERSION }}
3434
cache-dependency-path: backend/go.sum
@@ -134,7 +134,7 @@ jobs:
134134
} >> "$GITHUB_ENV"
135135
136136
- name: Set up Go
137-
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
137+
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
138138
with:
139139
go-version: ${{ env.GO_VERSION }}
140140
cache-dependency-path: backend/go.sum

.github/workflows/security-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ jobs:
306306
- name: Upload scan artifacts
307307
if: always() && steps.trivy-sarif-check.outputs.exists == 'true'
308308
# actions/upload-artifact v4.4.3
309-
uses: actions/upload-artifact@47309c993abb98030a35d55ef7ff34b7fa1074b5
309+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
310310
with:
311311
name: ${{ steps.pr-info.outputs.is_push == 'true' && format('security-scan-{0}', github.event_name == 'workflow_run' && github.event.workflow_run.head_branch || github.ref_name) || format('security-scan-pr-{0}', steps.pr-info.outputs.pr_number) }}
312312
path: |

.github/workflows/supply-chain-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ jobs:
264264
# Generate SBOM using official Anchore action (auto-updated by Renovate)
265265
- name: Generate SBOM
266266
if: steps.set-target.outputs.image_name != ''
267-
uses: anchore/sbom-action@28d71544de8eaf1b958d335707167c5f783590ad # v0.22.2
267+
uses: anchore/sbom-action@17ae1740179002c89186b61233e0f892c3118b11 # v0.23.0
268268
id: sbom
269269
with:
270270
image: ${{ steps.set-target.outputs.image_name }}
@@ -369,7 +369,7 @@ jobs:
369369
- name: Upload supply chain artifacts
370370
if: steps.set-target.outputs.image_name != ''
371371
# actions/upload-artifact v4.6.0
372-
uses: actions/upload-artifact@47309c993abb98030a35d55ef7ff34b7fa1074b5
372+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
373373
with:
374374
name: ${{ steps.pr-number.outputs.is_push == 'true' && format('supply-chain-{0}', steps.sanitize.outputs.branch) || format('supply-chain-pr-{0}', steps.pr-number.outputs.pr_number) }}
375375
path: |

.github/workflows/supply-chain-verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
# Generate SBOM using official Anchore action (auto-updated by Renovate)
120120
- name: Generate and Verify SBOM
121121
if: steps.image-check.outputs.exists == 'true'
122-
uses: anchore/sbom-action@28d71544de8eaf1b958d335707167c5f783590ad # v0.22.2
122+
uses: anchore/sbom-action@17ae1740179002c89186b61233e0f892c3118b11 # v0.23.0
123123
with:
124124
image: ghcr.io/${{ github.repository_owner }}/charon:${{ steps.tag.outputs.tag }}
125125
format: cyclonedx-json

backend/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/sirupsen/logrus v1.9.4
1818
github.com/stretchr/testify v1.11.1
1919
golang.org/x/crypto v0.48.0
20-
golang.org/x/net v0.50.0
20+
golang.org/x/net v0.51.0
2121
golang.org/x/text v0.34.0
2222
golang.org/x/time v0.14.0
2323
gopkg.in/natefinch/lumberjack.v2 v2.2.1

backend/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,8 @@ golang.org/x/crypto v0.48.0 h1:/VRzVqiRSggnhY7gNRxPauEQ5Drw9haKdM0jqfcCFts=
200200
golang.org/x/crypto v0.48.0/go.mod h1:r0kV5h3qnFPlQnBSrULhlsRfryS2pmewsg+XfMgkVos=
201201
golang.org/x/net v0.50.0 h1:ucWh9eiCGyDR3vtzso0WMQinm2Dnt8cFMuQa9K33J60=
202202
golang.org/x/net v0.50.0/go.mod h1:UgoSli3F/pBgdJBHCTc+tp3gmrU4XswgGRgtnwWTfyM=
203+
golang.org/x/net v0.51.0 h1:94R/GTO7mt3/4wIKpcR5gkGmRLOuE/2hNGeWq/GBIFo=
204+
golang.org/x/net v0.51.0/go.mod h1:aamm+2QF5ogm02fjy5Bb7CQ0WMt1/WVM7FtyaTLlA9Y=
203205
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
204206
golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k=
205207
golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=

frontend/package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"@testing-library/jest-dom": "^6.9.1",
6161
"@testing-library/react": "^16.3.2",
6262
"@testing-library/user-event": "^14.6.1",
63-
"@types/node": "^25.3.0",
63+
"@types/node": "^25.3.1",
6464
"@types/react": "^19.2.14",
6565
"@types/react-dom": "^19.2.3",
6666
"@typescript-eslint/eslint-plugin": "^8.56.1",
@@ -69,7 +69,7 @@
6969
"@vitest/coverage-istanbul": "^4.0.18",
7070
"@vitest/coverage-v8": "^4.0.18",
7171
"@vitest/ui": "^4.0.18",
72-
"autoprefixer": "^10.4.24",
72+
"autoprefixer": "^10.4.27",
7373
"eslint": "^9.39.3 <10.0.0",
7474
"eslint-plugin-react-hooks": "^7.0.1",
7575
"eslint-plugin-react-refresh": "^0.5.2",

0 commit comments

Comments
 (0)