Skip to content

Commit a88102a

Browse files
committed
[ci] Upgrade actions/checkout to v4
1 parent b375f29 commit a88102a

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Check out repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: Configure Git
1717
run: |
@@ -29,7 +29,7 @@ jobs:
2929
pip3 install -r tools/requirements.txt ".[docs]"
3030
3131
- name: Clone modm-ext/data.modm.io repository
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
with:
3434
repository: modm-ext/data.modm.io
3535
ssh-key: ${{secrets.SSH_KEY_DATA_MODM_IO}}

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
id-token: write
1717
steps:
1818
- name: Clone repository
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Set up Python 3.12
2222
uses: actions/setup-python@v4

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111

1212
- name: Check out Repository
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: Check out Test Docs Repository
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
repository: modm-ext/modm-data-test-docs
1919
path: ext/test/regression

.github/workflows/update-archives.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212

1313
- name: Check out Repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: Configure Git
1717
run: |
@@ -32,7 +32,7 @@ jobs:
3232
# This cache repository is private since copyright prevents republishing!
3333
# Nicely ask @salkinium for access to this repository.
3434
- name: Check out STMicro PDF Archive
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
repository: modm-ext/archive-stmicro-pdf
3838
path: ext/stmicro/pdf
@@ -56,7 +56,7 @@ jobs:
5656
# This cache repository is private since copyright prevents republishing!
5757
# Nicely ask @salkinium for access to this repository.
5858
- name: Check out STMicro HTML Archive
59-
uses: actions/checkout@v3
59+
uses: actions/checkout@v4
6060
with:
6161
repository: modm-ext/archive-stmicro-html
6262
path: ext/stmicro/html-archive
@@ -90,7 +90,7 @@ jobs:
9090
steps:
9191

9292
- name: Check out Repository
93-
uses: actions/checkout@v3
93+
uses: actions/checkout@v4
9494

9595
- name: Configure Git
9696
run: |
@@ -111,7 +111,7 @@ jobs:
111111
# This cache repository is private since copyright prevents republishing!
112112
# Nicely ask @salkinium for access to this repository.
113113
- name: Check out STMicro CubeProg Archive
114-
uses: actions/checkout@v3
114+
uses: actions/checkout@v4
115115
with:
116116
repository: modm-ext/archive-stmicro-cubeprog
117117
path: ext/stmicro/cubeprog
@@ -135,7 +135,7 @@ jobs:
135135
# This cache repository is private since copyright prevents republishing!
136136
# Nicely ask @salkinium for access to this repository.
137137
- name: Check out STMicro CubeMX Archive
138-
uses: actions/checkout@v3
138+
uses: actions/checkout@v4
139139
with:
140140
repository: modm-ext/archive-stmicro-cubemx
141141
path: ext/stmicro/cubemx

0 commit comments

Comments
 (0)