Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/cml_lab_create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
description: Optional lab title override; if empty uses PR title
required: false
type: string
default: ''
default: ""
secrets:
virl_host:
required: true
Expand All @@ -22,14 +22,14 @@ on:
required: true
outputs:
lab_nodes_json:
description: 'JSON string of nodes with ansible_host'
description: "JSON string of nodes with ansible_host"
value: ${{ jobs.create-topology.outputs.lab_nodes_json }}

jobs:
create-topology:
runs-on: ubuntu-latest
env:
PY_COLORS: '1'
PY_COLORS: "1"
outputs:
lab_nodes_json: ${{ steps.extract.outputs.lab_nodes_json }}
steps:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: "3.11"

- name: Install ansible and CML collection
shell: bash
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
CML_USERNAME: ${{ secrets.virl_username || 'admin' }}
CML_PASSWORD: ${{ secrets.virl_password }}
CML_LAB: ${{ steps.lab.outputs.title }}
CML_VERIFY_CERT: 'false'
CML_VERIFY_CERT: "false"
run: |
set -euo pipefail
echo "Starting lab: $CML_LAB using topology: ${{ steps.topo.outputs.path }}"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cml_lab_destroy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
description: Optional lab title override; if empty uses PR title
required: false
type: string
default: ''
default: ""
secrets:
virl_host:
required: true
Expand All @@ -20,7 +20,7 @@ jobs:
destroy_lab:
runs-on: ubuntu-latest
env:
PY_COLORS: '1'
PY_COLORS: "1"
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: "3.11"

- name: Install ansible and CML collection
shell: bash
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
CML_USERNAME: ${{ secrets.virl_username || 'admin' }}
CML_PASSWORD: ${{ secrets.virl_password }}
CML_LAB: ${{ steps.lab.outputs.title }}
CML_VERIFY_CERT: 'false'
CML_VERIFY_CERT: "false"
run: |
set -euo pipefail
echo "Destroying lab: $CML_LAB"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ee-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
uses: actions/checkout@v4

- name: Download Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5

- name: Post Comment
uses: actions/github-script@v7
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/network_simple.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ on:

jobs:
integration:
name: 'With - ${{ inputs.ansible_version }}'
name: "With - ${{ inputs.ansible_version }}"
runs-on: ubuntu-latest
env:
PY_COLORS: '1'
source_directory: './source'
ANSIBLE_COLLECTIONS_PATHS: '/home/runner/collections:~/.ansible/collections:/usr/share/ansible/collections'
PY_COLORS: "1"
source_directory: "./source"
ANSIBLE_COLLECTIONS_PATHS: "/home/runner/collections:~/.ansible/collections:/usr/share/ansible/collections"
steps:
- name: Checkout the collection repository
uses: ansible-network/github_actions/.github/actions/checkout_dependency@main
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: "3.12"

- name: Upgrade pip and wheel
run: python3 -m pip install --upgrade pip wheel ansible-pylibssh
Expand Down
Loading