From bfe81fb5c59222b1c7e03043b639556e3d1b9ade Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:59:02 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4.4.3 to 4.5.0 (#1529) * Bump actions/upload-artifact from 4.4.3 to 4.5.0 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.3 to 4.5.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882...6f51ac03b9356f520e9adb1b1b7802705f340c2b) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Fix arm64 sources for Ubuntu 24.04 - Get the codename for the current version of Ubuntu and use that to add the appropriate apt feeds for arm64. - Use `deb822` format for the package sources. - Write sources to the new sources file. --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martin Costello --- .github/workflows/benchmark.yml | 2 +- .github/workflows/build.yml | 46 ++++++++++++++++++++++------ .github/workflows/ossf-scorecard.yml | 2 +- 3 files changed, 39 insertions(+), 11 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index a867d4fe..d112b75f 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -40,7 +40,7 @@ jobs: run: ./benchmark.ps1 - name: Publish BenchmarkDotNet artifacts - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 if: ${{ !cancelled() }} with: name: artifacts diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 16722b2c..0d9de251 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,14 +60,42 @@ jobs: if: runner.os == 'Linux' shell: bash run: | + apt_sources=/etc/apt/sources.list.d/ubuntu.sources + codename=$(lsb_release -c | awk '{print $2}') sudo dpkg --add-architecture arm64 - sudo bash -c 'cat > /etc/apt/sources.list.d/arm64.list < ${apt_sources} <