diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 00e6499..ca942d5 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -156,7 +156,7 @@ jobs: strategy: max-parallel: 1 matrix: - region: [us-east-1, us-west-2, eu-west-1, eu-central-1, ap-southeast-2, us-east-2] + region: [us-east-1, us-west-2, eu-west-1, eu-central-1, ap-southeast-2, us-east-2, ap-southeast-1] runs-on: ${{ inputs.env }}-${{ matrix.region }} name: Deploy-all ${{ inputs.env }}-${{ matrix.region }}@${{ inputs.tag }} steps: diff --git a/.github/workflows/linter.yaml b/.github/workflows/linter.yaml index 8d58921..f169f98 100644 --- a/.github/workflows/linter.yaml +++ b/.github/workflows/linter.yaml @@ -17,14 +17,10 @@ jobs: id: files uses: jitterbit/get-changed-files@v1 continue-on-error: true - - - name: Download action linter - run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) - - - name: Run action linter - run: | - ./actionlint -oneline -ignore 'label ".+" is unknown' \ - -ignore '".+" is potentially untrusted' \ - -ignore '".+" SC2086 ".+"' \ - ${{ steps.files.outputs.all }} \ + + - uses: reviewdog/action-actionlint@v1 + with: + actionlint_flags: --ignore SC2086 --config-file .github/actionlint.yaml + fail_on_error: true + level: error diff --git a/actionlint.yaml b/actionlint.yaml new file mode 100644 index 0000000..7aec0fb --- /dev/null +++ b/actionlint.yaml @@ -0,0 +1,3 @@ +self-hosted-runner: + labels: + - non-prod