From 6bea0207b87196d56e4c044938dc48c186848a13 Mon Sep 17 00:00:00 2001 From: DevTwilight Date: Wed, 13 May 2026 18:08:49 +0530 Subject: [PATCH 1/2] chore: update GitHub Actions to Node 24 versions --- .github/workflows/release.yml | 8 ++++---- .github/workflows/test.yml | 11 ++++++++--- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cdbd23a..5d35777 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,7 +80,7 @@ jobs: shell: bash - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.name }} path: ${{ matrix.name }}.zip @@ -101,7 +101,7 @@ jobs: shell: bash - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: godot-addon path: godot-addon.zip @@ -118,11 +118,11 @@ jobs: if: ${{ success() }} steps: - name: Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: path: artifacts - name: Create/Update Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: name: GDScript formatter ${{ github.ref_name }} body: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 68c22fc..199fe44 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,9 +14,14 @@ jobs: name: Run tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 - - uses: dtolnay/rust-toolchain@stable - - uses: actions/cache@v4 + - name: checkout + uses: actions/checkout@v5 + + - name: Install Rust + uses: dtolnay/rust-toolchain@stable + + - name: Cache + uses: actions/cache@v5 with: path: | ~/.cargo/registry From 0c52acf2fab7b5e3aa2dd64320ffe76cc262a24c Mon Sep 17 00:00:00 2001 From: DevTwilight Date: Fri, 15 May 2026 08:01:53 +0530 Subject: [PATCH 2/2] Update test.yml --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 199fe44..08594c0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@stable - - name: Cache + - name: Cache Dependencies uses: actions/cache@v5 with: path: |