From 2df204c5d5eaba6983fa3e9e6002aab26a98c002 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 21:34:03 +0000 Subject: [PATCH 1/4] Bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 2 +- .github/workflows/debian.yml | 2 +- .github/workflows/lint.yaml | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8408df474..a22a59388 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -165,7 +165,7 @@ jobs: - id: "distcheck-debian-stable-amd64-clang" steps: - name: Download built source tree archive - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ola-${{ matrix.id }}-source-tree path: . diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 0ae5317ba..c06f7195c 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -72,7 +72,7 @@ jobs: steps: - uses: actions/checkout@master - name: Download build artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ola-built-debian-${{ matrix.image_tag }}-${{ matrix.architecture }} path: built diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 0c49e768a..d07b31083 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -67,7 +67,7 @@ jobs: needs: build steps: - name: Download built source tree archive - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ola-debian-stable-built-source-tree path: . @@ -97,7 +97,7 @@ jobs: needs: build steps: - name: Download built source tree archive - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ola-debian-stable-built-source-tree path: . @@ -123,7 +123,7 @@ jobs: needs: build steps: - name: Download built source tree archive - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ola-debian-stable-built-source-tree path: . @@ -160,7 +160,7 @@ jobs: needs: build steps: - name: Download built source tree archive - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ola-debian-stable-built-source-tree path: . @@ -197,7 +197,7 @@ jobs: needs: build steps: - name: Download built source tree archive - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ola-debian-stable-built-source-tree path: . @@ -226,7 +226,7 @@ jobs: needs: build steps: - name: Download built source tree archive - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ola-debian-stable-built-source-tree path: . From 8c78dbd7f0c160ca91ca49744b53953e1ba0e4d6 Mon Sep 17 00:00:00 2001 From: Peter Newman Date: Tue, 27 Feb 2024 23:11:32 +0000 Subject: [PATCH 2/4] Switch to actions/upload-artifact@v4 --- .github/workflows/lint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index d07b31083..12d892fb4 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -56,7 +56,7 @@ jobs: tar --exclude=ola-debian-stable-built-source-tree.tar.gz -cvzf ola-debian-stable-built-source-tree.tar.gz . - name: SHA256 artifact archive run: sha256sum ola-debian-stable-built-source-tree.tar.gz - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ola-debian-stable-built-source-tree path: ola-debian-stable-built-source-tree.tar.gz From 5e704b131fdc0038f64b7150a0b2b1cec6b44598 Mon Sep 17 00:00:00 2001 From: Peter Newman Date: Tue, 27 Feb 2024 23:12:06 +0000 Subject: [PATCH 3/4] Switch to actions/upload-artifact@v4 --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a22a59388..296da8211 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -119,14 +119,14 @@ jobs: if: always() run: sha256sum ola-*.tar.gz - name: Upload source tree artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: name: ola-${{ matrix.id }}-source-tree path: ola-${{ matrix.id }}-source-tree.tar.gz - name: Upload built artifact if: matrix.task == 'distcheck' || matrix.task == 'dist' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ola-${{ matrix.id }}-dist path: | @@ -147,7 +147,7 @@ jobs: flag-name: ${{ matrix.id }} - name: Upload coverage artifacts if: always() && matrix.task == 'coverage' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ola-${{ matrix.id }}-coverage path: coverage/ From 2313c93e52cb22bca8a162a2c3ff6e0f6d6b2016 Mon Sep 17 00:00:00 2001 From: Peter Newman Date: Tue, 27 Feb 2024 23:12:39 +0000 Subject: [PATCH 4/4] Switch to actions/upload-artifact@v4 --- .github/workflows/debian.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index c06f7195c..7fff3d801 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -53,7 +53,7 @@ jobs: shell: bash run: find . -type f -exec sha256sum {} \; working-directory: built - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: ola-built-debian-${{ matrix.image_tag }}-${{ matrix.architecture }} @@ -85,7 +85,7 @@ jobs: run: apt-get -y install autopkgtest - name: Test run: autopkgtest --output-dir=test-output built/*ges -- null - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() # Always upload the test output, even on failed tests with: name: ola-test-output-debian-${{ matrix.image_tag }}-${{ matrix.architecture }}