Skip to content

Commit 6bea020

Browse files
committed
chore: update GitHub Actions to Node 24 versions
1 parent 79aa6da commit 6bea020

2 files changed

Lines changed: 12 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
shell: bash
8181

8282
- name: Upload artifact
83-
uses: actions/upload-artifact@v4
83+
uses: actions/upload-artifact@v7
8484
with:
8585
name: ${{ matrix.name }}
8686
path: ${{ matrix.name }}.zip
@@ -101,7 +101,7 @@ jobs:
101101
shell: bash
102102

103103
- name: Upload artifact
104-
uses: actions/upload-artifact@v4
104+
uses: actions/upload-artifact@v7
105105
with:
106106
name: godot-addon
107107
path: godot-addon.zip
@@ -118,11 +118,11 @@ jobs:
118118
if: ${{ success() }}
119119
steps:
120120
- name: Download artifacts
121-
uses: actions/download-artifact@v4
121+
uses: actions/download-artifact@v8
122122
with:
123123
path: artifacts
124124
- name: Create/Update Release
125-
uses: softprops/action-gh-release@v2
125+
uses: softprops/action-gh-release@v3
126126
with:
127127
name: GDScript formatter ${{ github.ref_name }}
128128
body: |

.github/workflows/test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,14 @@ jobs:
1414
name: Run tests
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
18-
- uses: dtolnay/rust-toolchain@stable
19-
- uses: actions/cache@v4
17+
- name: checkout
18+
uses: actions/checkout@v5
19+
20+
- name: Install Rust
21+
uses: dtolnay/rust-toolchain@stable
22+
23+
- name: Cache
24+
uses: actions/cache@v5
2025
with:
2126
path: |
2227
~/.cargo/registry

0 commit comments

Comments
 (0)