Skip to content

Commit

Permalink
Fix setoutput (#294)
Browse files Browse the repository at this point in the history
* Fix deprecated setoutput and ignore make file warning

* auto patch increment

Co-authored-by: ras-rm-pr-bot <[email protected]>
  • Loading branch information
SteveScorfield and ras-rm-pr-bot authored Dec 22, 2022
1 parent 002d110 commit ab33544
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: |
PR=$(echo "$GITHUB_REF" | awk -F / '{print $3}')
echo "$PR"
echo ::set-output name=pr_number::pr-"$PR"
echo "pr_number=pr-$PR" >> $GITHUB_OUTPUT
# Build the Docker image
- name: Build Docker Image
if: github.ref != 'refs/heads/main'
Expand All @@ -71,7 +71,7 @@ jobs:
id: vars
run: |
git fetch --tags
echo ::set-output name=tag::$(git describe --tags --abbrev=0)
echo "tag=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
- name: update versions
if: github.ref != 'refs/heads/main'
env:
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
id: release
shell: bash
run: |
echo ::set-output name=version::$(grep -E "appVersion:\s+" $CHART_DIRECTORY/Chart.yaml | cut -d" " -f2 | sed -r 's/"//g')
echo "version=$(grep -E "appVersion:\s+" $CHART_DIRECTORY/Chart.yaml | cut -d" " -f2 | sed -r 's/"//g')" >> $GITHUB_OUTPUT
- name: package helm
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-kubernetes:
docker build -f _infra/docker/Dockerfile .

lint:
pipenv check ./application ./tests -i 51457
pipenv check ./application ./tests -i 51457 -i 51668
pipenv run isort .
pipenv run black --line-length 120 .
pipenv run flake8 ./application ./tests
Expand Down
4 changes: 2 additions & 2 deletions _infra/helm/collection-instrument/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 3.0.6
version: 3.0.7

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 3.0.6
appVersion: 3.0.7

0 comments on commit ab33544

Please sign in to comment.