chore: upgrade homebrew workflow upload-artifact to v4 #1021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: commit | |
| on: | |
| push: | |
| branches: | |
| - mainline | |
| jobs: | |
| test: # same as ci/test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: '1.21' | |
| - name: Set up Node | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 16.x | |
| - name: Check out code | |
| uses: actions/checkout@v2 | |
| - name: Run tests | |
| run: make local-test | |
| - name: Upload golang coverage report to CodeCov | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| files: ./coverage.out | |
| - name: Upload node coverage report to CodeCov | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| directory: cf-custom-resources/ |