Skip to content

Commit

Permalink
Remove deprecated options
Browse files Browse the repository at this point in the history
  • Loading branch information
bokysan committed Nov 3, 2020
1 parent b9a9fa5 commit 1fa1191
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 1fa1191

Please sign in to comment.