Skip to content

Commit aa836ff

Browse files
committed
Update github actions
1 parent 105aa26 commit aa836ff

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

.github/workflows/auto-close.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Code Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: autoclose
2020
shell: bash

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Code Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Fetch build artifacts
25-
uses: actions/download-artifact@v4
25+
uses: actions/download-artifact@v5
2626

2727
- name: List assets
2828
run: ls -al Betaflight-*/*

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Test
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222

2323
- name: Cache node_modules
2424
uses: actions/cache@v4
@@ -27,7 +27,7 @@ jobs:
2727
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
2828

2929
- name: Install Node.js
30-
uses: actions/setup-node@v4
30+
uses: actions/setup-node@v5
3131
with:
3232
node-version-file: '.nvmrc'
3333

@@ -59,7 +59,7 @@ jobs:
5959
os: windows-2022
6060
releaseArgs: --win64
6161
steps:
62-
- uses: actions/checkout@v4
62+
- uses: actions/checkout@v5
6363

6464
- name: Cache NW.js
6565
uses: actions/cache@v4
@@ -74,7 +74,7 @@ jobs:
7474
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
7575

7676
- name: Install Node.js
77-
uses: actions/setup-node@v4
77+
uses: actions/setup-node@v5
7878
with:
7979
node-version-file: '.nvmrc'
8080

@@ -86,7 +86,7 @@ jobs:
8686
if: ${{ matrix.name == 'macOs' }}
8787

8888
- name: Install Java JDK 8
89-
uses: actions/setup-java@v4
89+
uses: actions/setup-java@v5
9090
if: ${{ matrix.name == 'Android' }}
9191
with:
9292
distribution: temurin

.github/workflows/deploy-preview.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
with:
1616
ref: ${{ github.event.pull_request.head.sha }}
1717
persist-credentials: false # Don't persist GitHub token
@@ -23,7 +23,7 @@ jobs:
2323
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
2424

2525
- name: Install node.js
26-
uses: actions/setup-node@v4
26+
uses: actions/setup-node@v5
2727
with:
2828
node-version-file: '.nvmrc'
2929

@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
steps:
5151
- name: Download build artifact
52-
uses: actions/download-artifact@v4
52+
uses: actions/download-artifact@v5
5353
with:
5454
name: dist-files
5555
path: src/dist

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Fetch build artifacts
35-
uses: actions/download-artifact@v4
35+
uses: actions/download-artifact@v5
3636
with:
3737
path: release-assets/
3838

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Fetch build artifacts
37-
uses: actions/download-artifact@v4
37+
uses: actions/download-artifact@v5
3838
with:
3939
path: release-assets/
4040

.github/workflows/translations-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Download Crowdin translations and create PR
19-
uses: crowdin/github-action@v1
19+
uses: crowdin/github-action@v2
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2222
with:

.github/workflows/translations-upload.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
- name: Upload messages file
22-
uses: crowdin/github-action@1.5.1
22+
uses: crowdin/github-action@v2
2323
env:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
with:

0 commit comments

Comments
 (0)