diff --git a/.github/workflows/docker-build-mysql-80.yaml b/.github/workflows/docker-build-mysql-80.yaml index 4cc3664..1147eb3 100644 --- a/.github/workflows/docker-build-mysql-80.yaml +++ b/.github/workflows/docker-build-mysql-80.yaml @@ -189,7 +189,7 @@ jobs: target: ${{inputs.TARGET}} - name: upload - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: artifacts_image_${{steps.lowercase.outputs.project}} path: ./image_${{steps.lowercase.outputs.project}}.tar diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml index 1169e92..df51770 100644 --- a/.github/workflows/docker-build.yaml +++ b/.github/workflows/docker-build.yaml @@ -219,14 +219,14 @@ jobs: target: ${{ inputs.BUILD_OUTPUTS_TARGET }} - name: upload - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: artifacts_image_${{steps.lowercase.outputs.project}} path: ./image_${{steps.lowercase.outputs.project}}.tar retention-days: 1 - name: upload (outputs) id: upload-outputs - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 if: ${{ inputs.BUILD_OUTPUTS }} with: name: outputs_${{ steps.lowercase.outputs.project }}${{ inputs.BUILD_OUTPUTS_CUSTOM_NAME != null && format('_{0}', inputs.BUILD_OUTPUTS_CUSTOM_NAME) || '' }} diff --git a/.github/workflows/helm-security.yaml b/.github/workflows/helm-security.yaml index 164a438..018ecc8 100644 --- a/.github/workflows/helm-security.yaml +++ b/.github/workflows/helm-security.yaml @@ -23,7 +23,7 @@ jobs: entrypoint: checkov args: -d ./charts -o cli -o junitxml --output-file-path ./checkov.junit.xml -s - - uses: actions/upload-artifact@v4.6.2 + - uses: actions/upload-artifact@v5.0.0 with: name: checkov.junit.xml path: ./checkov.junit.xml/results_junitxml.xml diff --git a/.github/workflows/tf-build.yaml b/.github/workflows/tf-build.yaml index e0cd7ca..09d3d8f 100644 --- a/.github/workflows/tf-build.yaml +++ b/.github/workflows/tf-build.yaml @@ -82,14 +82,14 @@ jobs: include-plan-job-summary: "true" - name: upload - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: artifacts_${{inputs.ENVIRONMENT}}_${{github.sha}} path: ${{ inputs.WORKING_DIRECTORY }}/*_${{inputs.ENVIRONMENT}}_${{github.sha}}.* retention-days: 1 - name: upload custom artifacts - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 if: ${{ inputs.USE_CUSTOM_ARTIFACTS == true }} with: name: custom_artifacts_${{inputs.ENVIRONMENT}}_${{github.sha}} diff --git a/.github/workflows/tf-security.yaml b/.github/workflows/tf-security.yaml index 1431172..e1c47df 100644 --- a/.github/workflows/tf-security.yaml +++ b/.github/workflows/tf-security.yaml @@ -30,7 +30,7 @@ jobs: entrypoint: checkov args: -f ${{ inputs.WORKING_DIRECTORY }}/test_${{inputs.ENVIRONMENT}}_${{github.sha}}.json -o cli -o junitxml --output-file-path ${{ inputs.WORKING_DIRECTORY }}/checkov.junit.xml -s - - uses: actions/upload-artifact@v4.6.2 + - uses: actions/upload-artifact@v5.0.0 with: name: checkov.junit.xml path: ${{ inputs.WORKING_DIRECTORY }}/checkov.junit.xml/results_junitxml.xml