From 8a65dccad9a42f880c08907247d172217b73be7f Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 15 Dec 2023 01:48:09 +0000
Subject: [PATCH] chore(deps): bump actions/upload-artifact from 3 to 4

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
---
 .github/workflows/build-auto.yml   | 2 +-
 .github/workflows/build-manual.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build-auto.yml b/.github/workflows/build-auto.yml
index 5a190c9..cd4fa46 100644
--- a/.github/workflows/build-auto.yml
+++ b/.github/workflows/build-auto.yml
@@ -73,7 +73,7 @@ jobs:
           kolla-build --config-file ${{ matrix.release }}/kolla-build.conf --template-override ${{ matrix.release }}/template-overrides.j2 --profile main --push
 
       - name: Upload templates
-        uses: actions/upload-artifact@v3
+        uses: actions/upload-artifact@v4
         if: always()
         with:
           name: templates-${{ steps.release_name.outputs.name }}-main
diff --git a/.github/workflows/build-manual.yml b/.github/workflows/build-manual.yml
index 98e3519..e9e1b77 100644
--- a/.github/workflows/build-manual.yml
+++ b/.github/workflows/build-manual.yml
@@ -74,7 +74,7 @@ jobs:
           kolla-build --config-file releases/${{ github.event.inputs.os }}/kolla-build.conf --template-override releases/${{ github.event.inputs.os }}/template-overrides.j2 --profile ${{ github.event.inputs.profile }} --push
 
       - name: Upload templates
-        uses: actions/upload-artifact@v3
+        uses: actions/upload-artifact@v4
         if: always()
         with:
           name: templates-${{ github.event.inputs.os }}-${{ github.event.inputs.profile }}