From bd733dab401032799a36aa38080e719a7e85edad Mon Sep 17 00:00:00 2001 From: nihal07g Date: Sun, 17 Aug 2025 11:36:10 +0530 Subject: [PATCH] ci: update GitHub Actions to latest stable versions Updates deprecated GitHub Actions to their latest stable versions: - actions/checkout@v3 v4 - actions/setup-node@v1 v4 These updates provide better performance and security while maintaining complete backward compatibility with existing workflow configuration. No changes to job logic, build matrix, or test execution. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a38dc2230..588f32308 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,9 +22,9 @@ jobs: 'shell-httpie', 'shell-wget', 'swift' ] steps: - name: Get Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use Node JS ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Install package dependencies