Skip to content

Commit 2e74ecf

Browse files
authored
[infra] Update actions/checkout from v4 to v6 (#16472)
This commit updates actions/checkout across all GitHub Actions workflow files to use the latest v6 version. ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
1 parent 0b0019d commit 2e74ecf

19 files changed

+25
-25
lines changed

.github/workflows/build-dev-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
version: ${{ fromJSON(needs.filtering.outputs.ubuntu-target) }}
5151
steps:
5252
- name: Checkout
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v6
5454

5555
- name: Build Docker Image
5656
run: |
@@ -87,7 +87,7 @@ jobs:
8787
runs-on: one-x64-linux
8888
steps:
8989
- name: Checkout
90-
uses: actions/checkout@v4
90+
uses: actions/checkout@v6
9191

9292
- name: Build Docker Image
9393
run: |

.github/workflows/build-pub-dev-docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070

7171
steps:
7272
- name: Checkout
73-
uses: actions/checkout@v4
73+
uses: actions/checkout@v6
7474

7575
- name: Restore onecc external cache
7676
uses: actions/cache/restore@v4
@@ -121,7 +121,7 @@ jobs:
121121

122122
steps:
123123
- name: Checkout
124-
uses: actions/checkout@v4
124+
uses: actions/checkout@v6
125125

126126
- name: Restore onecc external cache
127127
uses: actions/cache/restore@v4
@@ -159,7 +159,7 @@ jobs:
159159

160160
steps:
161161
- name: Checkout
162-
uses: actions/checkout@v4
162+
uses: actions/checkout@v6
163163

164164
- name: Restore onecc external cache
165165
uses: actions/cache/restore@v4
@@ -200,7 +200,7 @@ jobs:
200200

201201
steps:
202202
- name: Checkout
203-
uses: actions/checkout@v4
203+
uses: actions/checkout@v6
204204

205205
- name: Restore onecc external cache
206206
uses: actions/cache/restore@v4

.github/workflows/check-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
# Fetch all history and branch (default: 1)
2828
# Require all history to get file creation date

.github/workflows/check-pr-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828
with:
2929
# Checkout PR head commit
3030
# Checkout Action use merge commit as default

.github/workflows/deploy-github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: 'Checkout'
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
- name: 'Generate HTML'
2525
uses: mattnotmitt/doxygen-action@v1.9
2626
with:

.github/workflows/generate-rootfs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: sudo apt-get update && sudo apt-get install -y debootstrap
4545

4646
- name: Checkout
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v6
4848

4949
- name: Generate RootFS
5050
run: |

.github/workflows/pub-circle-int-launchpad.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
} >> "$GITHUB_OUTPUT"
9999
100100
- name: Checkout
101-
uses: actions/checkout@v4
101+
uses: actions/checkout@v6
102102

103103
- name: Build without test
104104
run: |
@@ -221,7 +221,7 @@ jobs:
221221
echo "VERSION=${VERSION}" >> "$GITHUB_OUTPUT"
222222
223223
- name: Checkout
224-
uses: actions/checkout@v4
224+
uses: actions/checkout@v6
225225

226226
- name: Set up Git
227227
run: |

.github/workflows/pub-onert-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v6
4646

4747
- name: Restore externals cache
4848
uses: actions/cache/restore@v4

.github/workflows/pub-onnx2circle-launchpad.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
apt install circle-interpreter
102102
103103
- name: Checkout
104-
uses: actions/checkout@v4
104+
uses: actions/checkout@v6
105105

106106
# NOTE Docker image has pre-installed submodules in /workdir
107107
# NOTE Docker image has pre-installed python packages
@@ -226,7 +226,7 @@ jobs:
226226
echo "VERSION=${VERSION}" >> "$GITHUB_OUTPUT"
227227
228228
- name: Checkout
229-
uses: actions/checkout@v4
229+
uses: actions/checkout@v6
230230

231231
- name: Set up Git
232232
run: |

.github/workflows/pub-tools-mec-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
id-token: write
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414

1515
- name: Set up Python
1616
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)