Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update checkout to v4 #281

Merged
merged 3 commits into from
Jan 27, 2025
Merged
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
5 changes: 5 additions & 0 deletions .github/workflows/cicd-dev-acc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
with:
test_case: TestProvider
test_description: Check for valid terraform provider
vmaas_broker_url: "https://vmaas-broker.intg.hpedevops.net"
secrets: inherit

test-datasouces:
Expand All @@ -19,6 +20,7 @@ jobs:
with:
test_case: TestAccDataSource
test_description: GET call usecase validations
vmaas_broker_url: "https://vmaas-broker.intg.hpedevops.net"
secrets: inherit

test-vmaas-instance:
Expand All @@ -28,6 +30,7 @@ jobs:
with:
test_case: TestVmaasInstance TestAccResourceInstance
test_description: Instance usecase validations
vmaas_broker_url: "https://vmaas-broker.intg.hpedevops.net"
secrets: inherit

test-vmaas-lb:
Expand All @@ -37,6 +40,7 @@ jobs:
with:
test_case: TestVmaasLB TestAccResourceLB TestVmaasLoadBalancerPlan TestAccResourceLoadBalancerCreate
test_description: Loadbalancer usecase validations
vmaas_broker_url: "https://vmaas-broker.intg.hpedevops.net"
secrets: inherit

test-vmaas-network:
Expand All @@ -46,6 +50,7 @@ jobs:
with:
test_case: TestVmaasNetworkPlan TestAccResourceNetworkCreate TestAccResourceRouter TestVmaasRouter TestAccResourceTier TestVmaasRouteBGPNeighborPlan
test_description: NSX Network usecase validations
vmaas_broker_url: "https://vmaas-broker.intg.hpedevops.net"
secrets: inherit

process-logs:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/dev-acc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,19 @@ on:
required: true
default: 'Check Terraform Dev Testcase'
type: string
vmaas_broker_url:
description: 'Enter VMaaS Broker URL'
required: false
default: 'https://vmaas-broker.intg.hpedevops.net'
type: string

jobs:
acc-test:
uses: ./.github/workflows/reusable-dev-acc.yml
with:
test_case: ${{ inputs.test_case }}
test_description: ${{ inputs.test_description }}
vmaas_broker_url: ${{ inputs.vmaas_broker_url }}
secrets:
DEV_HPEGL_IAM_SERVICE_URL: ${{ secrets.DEV_HPEGL_IAM_SERVICE_URL }}
DEV_HPEGL_TENANT_ID: ${{ secrets.DEV_HPEGL_TENANT_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/malware-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
contents: read
steps:
- name: "Checkout Repository"
uses: "actions/checkout@v3.5.0"
uses: "actions/checkout@v4"
with:
fetch-depth: 0
- name: "Scan Source for Viruses"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
acc:
- config: |
layout_id = 118
controller_name = "ide"
bus_number = 0
interface_number = 1
2 changes: 2 additions & 0 deletions acc-dev-testcases/data-sources/morpheus_details.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
acc:
- config:
2 changes: 1 addition & 1 deletion acc-dev-testcases/resources/instance_clone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ vars:
instance_name: tf_acc_clone_%rand_int
acc:
- config: |
source_instance_id = 11
source_instance_id = 302
name = "$(instance_name)"
network {
id = 156
Expand Down
Loading