Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:

- name: 📤 Upload Diagram Artifact
if: ${{ inputs.generate-diagram == true }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: helm-diagram
path: ${{ inputs.diagram-file-name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/infracost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
infracost output --path /tmp/infracost.json --show-skipped --format html --out-file report.html

- name: 📤 Upload current cost in artifactory
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
with:
name: report.html
path: ${{ inputs.working-directory }}/report.html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prowler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
continue-on-error: true

- name: 📤 Upload report directory
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: compliance-report
path: ${{ github.workspace }}/report/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prowlerAWS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:

- name: 📤 Upload Artifact
if: ${{ inputs.enable_s3_upload == false }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: prowler-reports
path: /home/runner/work/prowler/prowler/output/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prowlerGCP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:

- name: 📤 Upload Artifact (If GCS Upload Disabled)
if: ${{ inputs.enable_gcs_upload == false }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: prowler-reports
path: ${{ github.workspace }}/report/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smurf_docker_helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ jobs:
inputs.docker_image_tar }}

- name: ⬆️ Upload Docker Image Artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: '${{ inputs.docker_image_name }}'
path: '${{ inputs.docker_image_tar }}'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/terraform_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:
fi

- name: 📤 Publish Terraform Plan
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: tfplan
path: ${{ inputs.working_directory }}/tfplan
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:

- name: 📤 Upload Errored Terraform State Artifact
if: ${{ always() }} && success() && steps.find_errored_tfstate.outputs['errored_found'] == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: errored_tfstate
path: ${{ inputs.working_directory }}/errored.tfstate
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/terraform_workflow_target.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ jobs:
eval "$PLAN_CMD"

- name: 📤 Publish Terraform Plan
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: tfplan
path: ${{ inputs.working_directory }}/tfplan
Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:

- name: 📤 Upload Errored Terraform State Artifact
if: ${{ always() }} && success() && steps.find_errored_tfstate.outputs['errored_found'] == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: errored_tfstate
path: ${{ inputs.working_directory }}/errored.tfstate
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tfdrift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:

# Save plan to artifacts
- name: 💾 Publish Terraform Plan
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: tfplan
path: tfplan
Expand Down
Loading