fix(login): properly encode redirect URL #2038
Workflow file for this run
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: Lint | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| actionlint: | |
| name: Github Actions lint | |
| runs-on: "${{ vars.RUNS_ON || 'ubuntu-latest' }}" | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Check workflow files | |
| uses: docker://rhysd/actionlint:latest | |
| with: | |
| args: -color -ignore SC2086 | |
| dockerlint: | |
| name: dockerfile-lint | |
| runs-on: "${{ vars.RUNS_ON || 'ubuntu-latest' }}" | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: dockerfile-lint | |
| run: docker build --check . | |
| golangci: | |
| name: golangci-lint | |
| runs-on: "${{ vars.RUNS_ON || 'ubuntu-latest' }}" | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install Go # We need the go binary to be available to run some checks (formatter, gomod_salt, ...) | |
| uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0 | |
| with: | |
| go-version: stable | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0 | |
| with: | |
| # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. | |
| version: v2.9.0 | |
| args: --timeout 10m | |
| spelling: | |
| name: Spell Check with Typos | |
| runs-on: "${{ vars.RUNS_ON || 'ubuntu-latest' }}" | |
| steps: | |
| - name: Checkout Actions Repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install wget | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends wget | |
| - name: Spell Check Repo | |
| uses: crate-ci/typos@631208b7aac2daa8b707f55e7331f9112b0e062d # v1.44.0 | |
| env: | |
| CLICOLOR: 1 |