Skip to content

Commit 5bc0914

Browse files
Remove ubuntu:bionic logic from smoke-test-packages and removed usage of actions/download-artifact@v3. (#301)
1 parent cc6cbb7 commit 5bc0914

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

.github/workflows/release.yml

+1-12
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,6 @@ jobs:
150150
needs: build-binary-package
151151
env:
152152
ARCH: amd64
153-
# required by ubuntu:bionic
154-
# https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
155-
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
156153
strategy:
157154
matrix:
158155
image: ${{ fromJSON(vars.SMOKE_TEST_IMAGES) }}
@@ -166,15 +163,7 @@ jobs:
166163
exit 1
167164
fi
168165
echo "BUILD_ARCH=$BUILD_ARCH" >> $GITHUB_ENV
169-
- name: Get binary packages for ubuntu:bionic
170-
if: matrix.image == 'ubuntu:bionic'
171-
uses: actions/download-artifact@v3
172-
with:
173-
name: binary-${{ env.BUILD_ARCH }}-${{ env.ARCH }}
174-
path: binary-${{ env.BUILD_ARCH }}-${{ env.ARCH }}
175-
176-
- name: Get binary packages for other versions
177-
if: matrix.image != 'ubuntu:bionic'
166+
- name: Get binary packages
178167
uses: actions/download-artifact@v4
179168
with:
180169
name: binary-${{ env.BUILD_ARCH }}-${{ env.ARCH }}

0 commit comments

Comments
 (0)