fix(deps): update module golang.org/x/net to v0.33.0 - autoclosed #2675
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Backend CI Pipeline | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
defaults: | |
run: | |
working-directory: backend | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run golangci-lint | |
uses: reviewdog/action-golangci-lint@v2 | |
with: | |
go_version_file: backend/go.mod | |
workdir: backend | |
level: warning | |
fail_on_error: true # deprecated | |
filter_mode: nofilter | |
golangci_lint_flags: --timeout=10m | |
generate: | |
name: Generate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23 | |
cache: false | |
- uses: actions/cache/restore@v4 | |
id: go-cache | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: go-${{ hashFiles('backend/go.sum') }} | |
restore-keys: | | |
go- | |
- name: Go Generate | |
run: go generate -x ./... | |
- name: Check Diff | |
run: git diff --exit-code | |
- uses: actions/cache/save@v4 | |
if: steps.go-cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/main' | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ steps.go-cache.outputs.cache-primary-key }} | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23 | |
cache: false | |
- uses: actions/cache/restore@v4 | |
id: go-cache | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: go-${{ hashFiles('backend/go.sum') }} | |
restore-keys: | | |
go- | |
- name: Go Modules | |
if: steps.go-cache.outputs.cache-hit != 'true' | |
run: go mod download -x | |
- name: Run Test | |
run: go test -race -shuffle on -parallel 8 -v ./... | |
- uses: actions/cache/save@v4 | |
if: steps.go-cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/main' | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ steps.go-cache.outputs.cache-primary-key }} |