Skip to content

Commit fa17d3b

Browse files
committed
chore: update to actions/checkout@v5
1 parent 1a2b37c commit fa17d3b

File tree

16 files changed

+22
-22
lines changed

16 files changed

+22
-22
lines changed

.github/actions/infra-repo-update/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runs:
1212
id: query
1313
uses: RadxaOS-SDK/rsdk/.github/actions/query@main
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
repository: RadxaOS-SDK/rsdk
1818
path: .tmp/rsdk

.github/actions/query/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runs:
1212
using: "composite"
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
repository: RadxaOS-SDK/rsdk
1818
path: .tmp/rsdk

.github/actions/setup/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: "composite"
55
steps:
66
- name: Checkout
7-
uses: actions/checkout@v4
7+
uses: actions/checkout@v5
88
with:
99
repository: RadxaOS-SDK/rsdk
1010
submodules: recursive

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
products: ${{ steps.query.outputs.products }}
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v5
4141
- name: Query available board configs
4242
id: query
4343
run: |
@@ -52,7 +52,7 @@ jobs:
5252
products: ${{ fromJSON(needs.query.outputs.products) }}
5353
steps:
5454
- name: Checkout
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
- name: Build ${{ matrix.products }}
5757
uses: ./.github/actions/build
5858
with:

.github/workflows/ci-request-review.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
request-review:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- uses: actions/github-script@v7
2020
with:
2121
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/docs.yaml

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: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838
- name: Setup mdBook

.github/workflows/infra-repo-update-production.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: Update Production repos
1414
uses: ./.github/actions/infra-repo-update
1515
with:

.github/workflows/infra-repo-update-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: Update Test repos
1414
uses: ./.github/actions/infra-repo-update
1515
with:

.github/workflows/new_version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: "ubuntu-latest"
66
steps:
77
- name: "Checkout"
8-
uses: "actions/checkout@v4"
8+
uses: "actions/checkout@v5"
99
with:
1010
fetch-depth: 0
1111
submodules: "recursive"

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: "ubuntu-latest"
66
steps:
77
- name: "Checkout"
8-
uses: "actions/checkout@v4"
8+
uses: "actions/checkout@v5"
99
with:
1010
fetch-depth: 0
1111
fetch-tags: true
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: "ubuntu-latest"
7070
steps:
7171
- name: "Checkout"
72-
uses: "actions/checkout@v4"
72+
uses: "actions/checkout@v5"
7373
- name: "Download generated debs"
7474
uses: "actions/download-artifact@v5"
7575
with:

0 commit comments

Comments
 (0)