From cdacaeaad85512ee057495bbb96f4456a500fe27 Mon Sep 17 00:00:00 2001 From: Roxy Light Date: Mon, 3 Aug 2026 11:27:13 -0700 Subject: [PATCH] Upgrade the GitHub Actions used in the test workflow --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db9750b2..0a668ac2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,13 +20,13 @@ jobs: contents: read steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Install Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v7 with: go-version-file: 'go.mod' - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v7 with: node-version-file: internal/ui/package.json - name: Build UI