From 19194caa3406a2d6ba5b563ca6960029eebb1a26 Mon Sep 17 00:00:00 2001 From: Hans Zandbelt Date: Fri, 3 Mar 2023 17:08:24 +0100 Subject: [PATCH] Github archs action: ubuntu-latest must be ubuntu_latest Signed-off-by: Hans Zandbelt --- .github/workflows/archs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/archs.yml b/.github/workflows/archs.yml index 7557169..0c18338 100644 --- a/.github/workflows/archs.yml +++ b/.github/workflows/archs.yml @@ -19,13 +19,13 @@ jobs: #test/check_nginx.c:102:E:core:test_request_context:0: (after this point) Test timeout expired #test/check_nginx.c:114:E:core:test_nginx_http_response_set:0: (after this point) Received signal 11 (Segmentation fault) - arch: armv7 - distro: ubuntu-latest + distro: ubuntu_latest - arch: aarch64 - distro: ubuntu-latest + distro: ubuntu_latest - arch: ppc64le - distro: ubuntu-latest + distro: ubuntu_latest - arch: s390x - distro: ubuntu-latest + distro: ubuntu_latest steps: - uses: actions/checkout@v3