fix(deps): update module github.com/gin-gonic/gin to v1.9.1 [security] #2331
  
    
      This file contains hidden or 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: CI | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| docker-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build the Docker image | |
| run: docker build . --file Dockerfile | |
| golangci-lint: | |
| name: golangci-lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v3 | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v3 | |
| with: | |
| version: v1.50.1 | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| tests-on-windows: | |
| needs: golangci-lint # run after golangci-lint action to not produce duplicated errors | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| golang: | |
| - 1.18.x | |
| - 1.19.x | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: ${{ matrix.golang }} | |
| - name: Run tests on Windows | |
| run: make.exe unittest | |
| continue-on-error: true | |
| tests-on-mac: | |
| needs: golangci-lint # run after golangci-lint action to not produce duplicated errors | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| golang: | |
| - 1.18.x | |
| - 1.19.x | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: ${{ matrix.golang }} | |
| - uses: actions/[email protected] | |
| with: | |
| path: ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go-${{ matrix.golang }}- | |
| - name: Run tests on Unix-like operating systems | |
| run: make unittest | |
| tests-on-linux: | |
| needs: golangci-lint # run after golangci-lint action to not produce duplicated errors | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| golang: | |
| - 1.13.x | |
| - 1.14.x | |
| - 1.15.x | |
| - 1.16.x | |
| - 1.17.x | |
| - 1.18.x | |
| - 1.19.x | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: ${{ matrix.golang }} | |
| - uses: actions/[email protected] | |
| with: | |
| path: ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go-${{ matrix.golang }}- | |
| - name: Run tests on Unix-like operating systems | |
| run: make unittest |