From 276e6c410fb2a01bce9657e95fb7e5469d1b3e19 Mon Sep 17 00:00:00 2001 From: Nora Sandler Date: Mon, 24 Jun 2024 23:55:53 +0000 Subject: [PATCH] update some github actions and remove a bad test --- .github/workflows/test_tests.yaml | 4 ++-- tests/chapter_6/invalid_lex/extra_credit/bad_label_2.c | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) delete mode 100644 tests/chapter_6/invalid_lex/extra_credit/bad_label_2.c diff --git a/.github/workflows/test_tests.yaml b/.github/workflows/test_tests.yaml index ec26c3f0..73d0f194 100644 --- a/.github/workflows/test_tests.yaml +++ b/.github/workflows/test_tests.yaml @@ -56,13 +56,13 @@ jobs: # next, download both versions of NQCC - name: Get final NQCC - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: nqcc-${{ matrix.os }}-20 path: nqcc - name: Get partial NQCC - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: nqcc-${{ matrix.os }}-19 path: nqcc-partial diff --git a/tests/chapter_6/invalid_lex/extra_credit/bad_label_2.c b/tests/chapter_6/invalid_lex/extra_credit/bad_label_2.c deleted file mode 100644 index 15165080..00000000 --- a/tests/chapter_6/invalid_lex/extra_credit/bad_label_2.c +++ /dev/null @@ -1,3 +0,0 @@ -int main(void) { - goto a.b; -} \ No newline at end of file