Skip to content

Commit

Permalink
[ci] Upgrade actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
salkinium committed Jan 1, 2025
1 parent b375f29 commit a88102a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure Git
run: |
Expand All @@ -29,7 +29,7 @@ jobs:
pip3 install -r tools/requirements.txt ".[docs]"
- name: Clone modm-ext/data.modm.io repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: modm-ext/data.modm.io
ssh-key: ${{secrets.SSH_KEY_DATA_MODM_IO}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
id-token: write
steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python 3.12
uses: actions/setup-python@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
steps:

- name: Check out Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check out Test Docs Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: modm-ext/modm-data-test-docs
path: ext/test/regression
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/update-archives.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:

- name: Check out Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure Git
run: |
Expand All @@ -32,7 +32,7 @@ jobs:
# This cache repository is private since copyright prevents republishing!
# Nicely ask @salkinium for access to this repository.
- name: Check out STMicro PDF Archive
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: modm-ext/archive-stmicro-pdf
path: ext/stmicro/pdf
Expand All @@ -56,7 +56,7 @@ jobs:
# This cache repository is private since copyright prevents republishing!
# Nicely ask @salkinium for access to this repository.
- name: Check out STMicro HTML Archive
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: modm-ext/archive-stmicro-html
path: ext/stmicro/html-archive
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
steps:

- name: Check out Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure Git
run: |
Expand All @@ -111,7 +111,7 @@ jobs:
# This cache repository is private since copyright prevents republishing!
# Nicely ask @salkinium for access to this repository.
- name: Check out STMicro CubeProg Archive
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: modm-ext/archive-stmicro-cubeprog
path: ext/stmicro/cubeprog
Expand All @@ -135,7 +135,7 @@ jobs:
# This cache repository is private since copyright prevents republishing!
# Nicely ask @salkinium for access to this repository.
- name: Check out STMicro CubeMX Archive
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: modm-ext/archive-stmicro-cubemx
path: ext/stmicro/cubemx
Expand Down

0 comments on commit a88102a

Please sign in to comment.