Updated Go lang to 1.17.1 version

This commit is contained in:
Alexey Pustovalov 2021-09-14 04:55:24 +02:00
parent 0d6b1823fb
commit 239115bbba
3 changed files with 5 additions and 9 deletions

View File

@ -29,11 +29,6 @@ jobs:
latest_branch: ${{ github.event.repository.default_branch }} latest_branch: ${{ github.event.repository.default_branch }}
docker_repository: "zabbix" docker_repository: "zabbix"
steps: steps:
- name: Checkout the repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- shell: bash - shell: bash
id: os id: os
run: | run: |
@ -342,7 +337,8 @@ jobs:
build-args: BUILD_BASE_IMAGE=${{ env.DOCKER_REPOSITORY }}/zabbix-build-base@${{ steps.prepare_tags.outputs.base_tag }} build-args: BUILD_BASE_IMAGE=${{ env.DOCKER_REPOSITORY }}/zabbix-build-base@${{ steps.prepare_tags.outputs.base_tag }}
- name: Image digest - name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }} run: |
echo ${{ steps.docker_build.outputs.digest }}
echo "${{ steps.docker_build.outputs.digest }}" > ${{ matrix.build }}_${{ matrix.os }} echo "${{ steps.docker_build.outputs.digest }}" > ${{ matrix.build }}_${{ matrix.os }}
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2

View File

@ -6,7 +6,7 @@ ARG ZBX_VERSION=${MAJOR_VERSION}
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
ENV TERM=xterm ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \ ENV TERM=xterm ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
PATH=/usr/local/go/bin:/usr/lib/jvm/default-jvm/bin:$PATH \ PATH=/usr/lib/jvm/default-jvm/bin:$PATH \
JAVA_HOME=/usr/lib/jvm/default-jvm JAVA_HOME=/usr/lib/jvm/default-jvm
LABEL org.opencontainers.image.title="Zabbix build base" \ LABEL org.opencontainers.image.title="Zabbix build base" \