Skip to content

Commit

Permalink
🌱 Replace deprecated command with environment file (#3298)
Browse files Browse the repository at this point in the history
  • Loading branch information
jongwooo committed Mar 18, 2023
1 parent e7009f5 commit af14bf6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/apidiff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
REF="HEAD^"
[[ -z "${{ github.base_ref }}" ]] || REF=$(git show-ref ${{ github.base_ref }} | head -1 | cut -d' ' -f2)
echo "::set-output name=skip::$(test/check-docs-only.sh $REF)"
echo "skip=$(test/check-docs-only.sh $REF)" >> $GITHUB_OUTPUT
go-apidiff:
name: Verify API differences
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
REF="HEAD^"
[[ -z "${{ github.base_ref }}" ]] || REF=$(git show-ref ${{ github.base_ref }} | head -1 | cut -d' ' -f2)
echo "::set-output name=skip::$(test/check-docs-only.sh $REF)"
echo "skip=$(test/check-docs-only.sh $REF)" >> $GITHUB_OUTPUT
lint:
name: golangci-lint
Expand Down Expand Up @@ -56,4 +56,4 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Run yamllint make target
run: make yamllint
run: make yamllint
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
REF="HEAD^"
[[ -z "${{ github.base_ref }}" ]] || REF=$(git show-ref ${{ github.base_ref }} | head -1 | cut -d' ' -f2)
echo "::set-output name=skip::$(test/check-docs-only.sh $REF)"
echo "skip=$(test/check-docs-only.sh $REF)" >> $GITHUB_OUTPUT
test:
name: ${{ matrix.os }}
Expand Down

0 comments on commit af14bf6

Please sign in to comment.