diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index 17f9fa8..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: "CodeQL analysis" - -on: - push: - schedule: - - cron: '0 0 * * 0' - -jobs: - codeql: - - strategy: - fail-fast: false - - runs-on: ubuntu-latest # windows-latest and ubuntu-latest are supported. macos-latest is not supported at this time. - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 09b6e95..da03787 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,9 +11,9 @@ jobs: - uses: actions/checkout@master - name: Set up Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v6 with: - go-version: 1.19 + go-version-file: 'go.mod' id: go - name: Build diff --git a/script/bootstrap b/script/bootstrap index ff208aa..50eb8d4 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -2,7 +2,7 @@ set -e -readonly supportedGo="go1.1[6789]" +readonly supportedGo="go1.2[012345]" # Ensure go is installed if ! command -v go ; then