Remove deprecated options

This commit is contained in:
Bojan Čekrlić 2020-11-03 12:21:08 +01:00
parent b9a9fa55d7
commit 1fa1191153
3 changed files with 5 additions and 6 deletions

View file

@ -11,14 +11,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Get release version
run: echo ::set-env name=RELEASE_VERSION::$(echo ${GITHUB_REF:10})
run: echo "${GITHUB_REF:10}" >> $RELEASE_VERSION
- name: Run unit tests
run: ./unit-tests.sh
- name: Set up Docker Buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
version: latest
buildx-version: latest
- name: Run integration tests
run: ./integration-tests.sh
- name: Run HELM chart tests

View file

@ -16,7 +16,7 @@ jobs:
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
version: latest
buildx-version: latest
- name: Run integration tests
run: ./integration-tests.sh
- name: Run HELM chart tests

View file

@ -21,13 +21,12 @@ jobs:
- name: Get the build version number
id: version_number
shell: bash
run: |
echo ::set-env name=RELEASE_VERSION::$(echo ${GITHUB_REF:10})
run: echo "${GITHUB_REF:10}" >> $RELEASE_VERSION
- name: Set up Docker Buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
version: latest
buildx-version: latest
- name: Build branch / tag
env:
DOCKER_USERNAME: 'boky'