diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index 265c2301b..7d2b17736 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -25,7 +25,7 @@ jobs: id: generate run: | go run mage.go tagsmatrix > tags.json - echo "::set-output name=tags::$(cat tags.json)" + echo "tags=$(cat tags.json)" >> $GITHUB_OUTPUT shell: bash test: needs: generate-matrix @@ -76,3 +76,14 @@ jobs: files: build/coverage-tinygo.txt flags: tinygo,${{ matrix.build-flag }} token: ${{ secrets.CODECOV_TOKEN }} + enforce-all-checks: + runs-on: ubuntu-latest + needs: test + permissions: + checks: read + steps: + - name: GitHub Checks + uses: poseidon/wait-for-status-checks@v0.6.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} + \ No newline at end of file