From d5b8bd099433e9f6c301152fbba136556b9bbfb2 Mon Sep 17 00:00:00 2001 From: Prabhu Subramanian Date: Fri, 15 Nov 2024 15:46:22 +0000 Subject: [PATCH] Update release step Signed-off-by: Prabhu Subramanian --- .github/workflows/app-release.yml | 2 +- .github/workflows/binary-builds.yml | 2 +- .github/workflows/npm-release.yml | 2 +- ci/base-images/opensuse/Dockerfile.python310 | 2 +- ci/base-images/opensuse/Dockerfile.python39 | 2 +- ci/base-images/sle/Dockerfile.python311 | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/app-release.yml b/.github/workflows/app-release.yml index 494db90f0..8d7acba9f 100644 --- a/.github/workflows/app-release.yml +++ b/.github/workflows/app-release.yml @@ -37,7 +37,7 @@ jobs: run: | zip --junk-paths -r cdxgen-dist.zip cdxgen-latest-x86_64.AppImage - name: Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: files: | diff --git a/.github/workflows/binary-builds.yml b/.github/workflows/binary-builds.yml index fc9f103f9..bb7cedb6d 100644 --- a/.github/workflows/binary-builds.yml +++ b/.github/workflows/binary-builds.yml @@ -68,7 +68,7 @@ jobs: name: ${{ matrix.vartifact }} path: ${{ matrix.vartifact }} - name: Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: files: | diff --git a/.github/workflows/npm-release.yml b/.github/workflows/npm-release.yml index 85ddcd512..fd274116c 100644 --- a/.github/workflows/npm-release.yml +++ b/.github/workflows/npm-release.yml @@ -118,7 +118,7 @@ jobs: continue-on-error: true if: startsWith(github.ref, 'refs/tags/') - name: Attach cdx sbom to release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: files: | diff --git a/ci/base-images/opensuse/Dockerfile.python310 b/ci/base-images/opensuse/Dockerfile.python310 index 7b14e5109..3fd6c2e43 100644 --- a/ci/base-images/opensuse/Dockerfile.python310 +++ b/ci/base-images/opensuse/Dockerfile.python310 @@ -23,7 +23,7 @@ RUN set -e; \ esac \ && zypper refresh && zypper --non-interactive update && zypper --non-interactive install -l --no-recommends gcc12 gcc12-c++ gcc12-fortran \ python310 python310-devel python310-pip findutils java-23-openjdk-devel \ - bzip2 git-core wget zip unzip make gawk nodejs22 npm22 nodejs22-devel gdal-devel libxml2-devel libxslt-devel \ + bzip2 git-core wget zip unzip make gawk nodejs22 npm22 nodejs22-devel gdal-devel libxml2-devel \ && update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-12 10 \ && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10 \ && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10 \ diff --git a/ci/base-images/opensuse/Dockerfile.python39 b/ci/base-images/opensuse/Dockerfile.python39 index 716432a66..ba4a7fd53 100644 --- a/ci/base-images/opensuse/Dockerfile.python39 +++ b/ci/base-images/opensuse/Dockerfile.python39 @@ -23,7 +23,7 @@ RUN set -e; \ esac \ && zypper refresh && zypper --non-interactive update && zypper --non-interactive install -l --no-recommends gcc12 gcc12-c++ gcc12-fortran \ python39 python39-devel python39-pip findutils java-23-openjdk-devel \ - bzip2 git-core wget zip unzip make gawk nodejs22 npm22 nodejs22-devel gdal-devel libxml2-devel libxslt-devel \ + bzip2 git-core wget zip unzip make gawk nodejs22 npm22 nodejs22-devel gdal-devel libxml2-devel \ && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10 \ && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10 \ && update-alternatives --install /usr/bin/gfortran gfortran /usr/bin/gfortran-12 10 \ diff --git a/ci/base-images/sle/Dockerfile.python311 b/ci/base-images/sle/Dockerfile.python311 index 8ff09c82d..fdc8cac11 100644 --- a/ci/base-images/sle/Dockerfile.python311 +++ b/ci/base-images/sle/Dockerfile.python311 @@ -31,7 +31,7 @@ RUN set -e; \ *) echo >&2 "error: unsupported architecture: '$ARCH_NAME'"; exit 1 ;; \ esac \ && zypper refresh && zypper --non-interactive update && zypper --non-interactive install -l --no-recommends gcc${GCC_VERSION} gcc${GCC_VERSION}-c++ gcc${GCC_VERSION}-fortran \ - bzip2 git-core wget zip unzip make gawk libxml2-devel libxslt-devel \ + bzip2 git-core wget zip unzip make gawk libxml2-devel \ && update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-${GCC_VERSION} 10 \ && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${GCC_VERSION} 10 \ && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${GCC_VERSION} 10 \