Skip to content

chore(deps): bump golang.org/x/crypto from 0.43.0 to 0.44.0 in /phantom_decryptor in the minor-and-patch group #2

chore(deps): bump golang.org/x/crypto from 0.43.0 to 0.44.0 in /phantom_decryptor in the minor-and-patch group

chore(deps): bump golang.org/x/crypto from 0.43.0 to 0.44.0 in /phantom_decryptor in the minor-and-patch group #2

Workflow file for this run

name: deps-ci
on:
pull_request:
branches: [ main, master ]
workflow_dispatch:
permissions:
contents: read
jobs:
go:
runs-on: ubuntu-latest
strategy:
matrix:
module:
- "phantom_decryptor"
- "phantom_extractor"
defaults:
run:
working-directory: ${{ matrix.module }}
steps:
- uses: actions/checkout@v4
- name: Setup Go (per module)
uses: actions/setup-go@v5
with:
go-version: 'stable'
check-latest: true
- name: Tidy
run: go mod tidy
- name: Build
run: go build ./...
- name: Test
run: go test ./...
- name: govulncheck (non-blocking)
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
"$(go env GOPATH)/bin/govulncheck" ./... || true