Skip to content

fix(openapi_plugin): block Azure WireServer and IPv6-embedded private addresses in server URL validation #30018

fix(openapi_plugin): block Azure WireServer and IPv6-embedded private addresses in server URL validation

fix(openapi_plugin): block Azure WireServer and IPv6-embedded private addresses in server URL validation #30018

Workflow file for this run

# Check pull requests for typos.
#
# Configuration: .github/_typos.toml
#
# Info: https://github.com/marketplace/actions/typos-action
# Local install: brew install typos-cli
# Local install: conda install typos
# Local run: typos -c .github/_typos.toml
name: Spell Check
on:
workflow_dispatch:
pull_request:
branches: ["main", "feature*"]
jobs:
run:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
persist-credentials: false
- name: Get changed files
id: changed-files
if: github.event_name == 'pull_request'
uses: jitterbit/get-changed-files@b17fbb00bdc0c0f63fcf166580804b4d2cdc2a42 # v1
continue-on-error: true
- name: Use custom config file
uses: crate-ci/typos@631208b7aac2daa8b707f55e7331f9112b0e062d # v1.44.0
with:
files: ${{ github.event_name == 'pull_request' && steps.changed-files.outputs.added_modified || '.' }}
config: .github/_typos.toml
write_changes: false