chore: update GitHub Actions configuration (#3792)
- Change the cron schedule from `'0 17 * * 5'` to `"0 17 * * 5"` in the file `.github/workflows/codeql.yml` - Change the value of `language` from `['go']` to `["go"]` in the file `.github/workflows/codeql.yml` - Change the value of `go-version` from `'^1.18'` to `"^1.18"` in the file `.github/workflows/gin.yml` - Add `1.21` to the list of `go` versions and change the value of `test-tags` in the file `.github/workflows/gin.yml` - Change the value of `if` condition from `matrix.go-version == '1.20.x'` to `matrix.go-version == '1.21.x'` in the file `.github/workflows/gin.yml` - Change the value of `on` from `'*'` to `"*"` in the file `.github/workflows/goreleaser.yml` - Change the name of the job from `name: Checkout` to `name: Checkout` in the file `.github/workflows/goreleaser.yml` - Change the name of the job from `name: Set up Go` to `name: Set up Go` in the file `.github/workflows/goreleaser.yml` - Change the value of `go-version` from `1.20` to `"^1"` in Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
		
							
								
								
									
										8
									
								
								.github/workflows/codeql.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								.github/workflows/codeql.yml
									
									
									
									
										vendored
									
									
								
							@ -7,12 +7,12 @@ name: "CodeQL"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
on:
 | 
					on:
 | 
				
			||||||
  push:
 | 
					  push:
 | 
				
			||||||
    branches: [ master ]
 | 
					    branches: [master]
 | 
				
			||||||
  pull_request:
 | 
					  pull_request:
 | 
				
			||||||
    # The branches below must be a subset of the branches above
 | 
					    # The branches below must be a subset of the branches above
 | 
				
			||||||
    branches: [ master ]
 | 
					    branches: [master]
 | 
				
			||||||
  schedule:
 | 
					  schedule:
 | 
				
			||||||
    - cron: '0 17 * * 5'
 | 
					    - cron: "0 17 * * 5"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
  analyze:
 | 
					  analyze:
 | 
				
			||||||
@ -29,7 +29,7 @@ jobs:
 | 
				
			|||||||
        # Override automatic language detection by changing the below list
 | 
					        # Override automatic language detection by changing the below list
 | 
				
			||||||
        # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
 | 
					        # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
 | 
				
			||||||
        # TODO: Enable for javascript later
 | 
					        # TODO: Enable for javascript later
 | 
				
			||||||
        language: [ 'go']
 | 
					        language: ["go"]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      - name: Checkout repository
 | 
					      - name: Checkout repository
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										8
									
								
								.github/workflows/gin.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								.github/workflows/gin.yml
									
									
									
									
										vendored
									
									
								
							@ -18,7 +18,7 @@ jobs:
 | 
				
			|||||||
      - name: Setup go
 | 
					      - name: Setup go
 | 
				
			||||||
        uses: actions/setup-go@v5
 | 
					        uses: actions/setup-go@v5
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          go-version: '^1.18'
 | 
					          go-version: "^1.18"
 | 
				
			||||||
      - name: Checkout repository
 | 
					      - name: Checkout repository
 | 
				
			||||||
        uses: actions/checkout@v4
 | 
					        uses: actions/checkout@v4
 | 
				
			||||||
      - name: Setup golangci-lint
 | 
					      - name: Setup golangci-lint
 | 
				
			||||||
@ -31,8 +31,8 @@ jobs:
 | 
				
			|||||||
    strategy:
 | 
					    strategy:
 | 
				
			||||||
      matrix:
 | 
					      matrix:
 | 
				
			||||||
        os: [ubuntu-latest, macos-latest]
 | 
					        os: [ubuntu-latest, macos-latest]
 | 
				
			||||||
        go: ['1.18', '1.19', '1.20']
 | 
					        go: ["1.18", "1.19", "1.20", "1.21"]
 | 
				
			||||||
        test-tags: ['', '-tags nomsgpack', '-tags "sonic avx"', '-tags go_json']
 | 
					        test-tags: ["", "-tags nomsgpack", '-tags "sonic avx"', "-tags go_json"]
 | 
				
			||||||
        include:
 | 
					        include:
 | 
				
			||||||
          - os: ubuntu-latest
 | 
					          - os: ubuntu-latest
 | 
				
			||||||
            go-build: ~/.cache/go-build
 | 
					            go-build: ~/.cache/go-build
 | 
				
			||||||
@ -73,5 +73,5 @@ jobs:
 | 
				
			|||||||
          flags: ${{ matrix.os }},go-${{ matrix.go }},${{ matrix.test-tags }}
 | 
					          flags: ${{ matrix.os }},go-${{ matrix.go }},${{ matrix.test-tags }}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Format
 | 
					      - name: Format
 | 
				
			||||||
        if: matrix.go-version == '1.20.x'
 | 
					        if: matrix.go-version == '1.21.x'
 | 
				
			||||||
        run: diff -u <(echo -n) <(gofmt -d .)
 | 
					        run: diff -u <(echo -n) <(gofmt -d .)
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										7
									
								
								.github/workflows/goreleaser.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								.github/workflows/goreleaser.yml
									
									
									
									
										vendored
									
									
								
							@ -3,7 +3,7 @@ name: Goreleaser
 | 
				
			|||||||
on:
 | 
					on:
 | 
				
			||||||
  push:
 | 
					  push:
 | 
				
			||||||
    tags:
 | 
					    tags:
 | 
				
			||||||
      - '*'
 | 
					      - "*"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
permissions:
 | 
					permissions:
 | 
				
			||||||
  contents: write
 | 
					  contents: write
 | 
				
			||||||
@ -12,8 +12,7 @@ jobs:
 | 
				
			|||||||
  goreleaser:
 | 
					  goreleaser:
 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      -
 | 
					      - name: Checkout
 | 
				
			||||||
        name: Checkout
 | 
					 | 
				
			||||||
        uses: actions/checkout@v4
 | 
					        uses: actions/checkout@v4
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          fetch-depth: 0
 | 
					          fetch-depth: 0
 | 
				
			||||||
@ -21,7 +20,7 @@ jobs:
 | 
				
			|||||||
        name: Set up Go
 | 
					        name: Set up Go
 | 
				
			||||||
        uses: actions/setup-go@v5
 | 
					        uses: actions/setup-go@v5
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          go-version: 1.20
 | 
					          go-version: "^1"
 | 
				
			||||||
      -
 | 
					      -
 | 
				
			||||||
        name: Run GoReleaser
 | 
					        name: Run GoReleaser
 | 
				
			||||||
        uses: goreleaser/goreleaser-action@v5
 | 
					        uses: goreleaser/goreleaser-action@v5
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user