From 7d4d14ca54990eab6b1a300b918ce31178d92800 Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Wed, 6 Mar 2024 11:31:23 -0500 Subject: [PATCH] chore(ci): revert `actions/upload-artifact` (#2145) Reverts `actions/upload-artifact` from v4.0.0 to v3.1.3. Signed-off-by: Ryan Johnson --- .github/workflows/acceptance-tests.yaml | 2 +- .github/workflows/release.yml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/acceptance-tests.yaml b/.github/workflows/acceptance-tests.yaml index f6a847c9d..ce85d444a 100644 --- a/.github/workflows/acceptance-tests.yaml +++ b/.github/workflows/acceptance-tests.yaml @@ -84,7 +84,7 @@ jobs: run: echo "TODAY_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV - name: Upload test log - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 with: name: test-log-${{ env.TODAY_DATE }} path: /tmp/gotest.log diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8659aae8a..e9338a892 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: fetch-depth: 0 - name: Generate Release Notes run: sed -n -e "1{/# /d;}" -e "2{/^$/d;}" -e "/# $(git describe --abbrev=0 --exclude="$(git describe --abbrev=0 --match='v*.*.*' --tags)" --match='v*.*.*' --tags | tr -d v)/q;p" CHANGELOG.md > release-notes.txt - - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 with: name: release-notes path: release-notes.txt @@ -41,4 +41,3 @@ jobs: setup-go-version-file: '.go-version' # Product Version (e.g. v1.2.3 or github.ref_name) product-version: '${{ github.ref_name }}' - \ No newline at end of file