diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e64d2be..a107147 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,9 +21,9 @@ jobs: strategy: matrix: go_version: - - '1.14' - '1.15' - '1.16' + - '1.17' runs-on: ubuntu-latest env: GO111MODULE: on @@ -51,7 +51,7 @@ jobs: - name: Setup go uses: actions/setup-go@v2 with: - go-version: '1.16' + go-version: '1.17' - name: Checkout Source uses: actions/checkout@v2 - uses: actions/cache@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2bc48d7..2cb8693 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.16.x + go-version: 1.17 - name : Get release version id: get_version run: echo ::set-env name=RELEASE_VERSION::$(echo ${GITHUB_REF:10}) @@ -41,6 +41,6 @@ jobs: name: securego/gosec username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - buildargs: GO_VERSION=1.16 + buildargs: GO_VERSION=1.17 tags: "latest,${{ env.RELEASE_VERSION }}" tag_names: true