Skip to content

Commit 0ac9fdd

Browse files
ci: bump actions/checkout from 2.4.0 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 87f1631 commit 0ac9fdd

7 files changed

+8
-8
lines changed

.github/workflows/build_documentation.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
# check out the ModularSensors repo
21-
- uses: actions/checkout@v2.4.0
21+
- uses: actions/checkout@v3
2222
with:
2323
path: code_docs/ModularSensors
2424

@@ -59,7 +59,7 @@ jobs:
5959
6060
# check out my fork of m.css, for processing Doxygen output
6161
- name: Checkout m.css
62-
uses: actions/checkout@v2.4.0
62+
uses: actions/checkout@v3
6363
with:
6464
# Repository name with owner. For example, actions/checkout
6565
repository: SRGDamia1/m.css

.github/workflows/build_examples_arduino_cli.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
]
3737

3838
steps:
39-
- uses: actions/checkout@v2.4.0
39+
- uses: actions/checkout@v3
4040

4141
- name: Set environment variable for library installation source
4242
run: |

.github/workflows/build_examples_platformio.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
pio_environment: [mayfly, mega, arduino_zero, adafruit_feather_m0, autonomo]
2929

3030
steps:
31-
- uses: actions/checkout@v2.4.0
31+
- uses: actions/checkout@v3
3232

3333
- name: Set environment variable for library installation source
3434
run: |

.github/workflows/build_menu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
sensorFlag: NO_SENSORS
183183
publisherFlag: BUILD_PUB_THINGSPEAK
184184
steps:
185-
- uses: actions/checkout@v2.4.0
185+
- uses: actions/checkout@v3
186186

187187
- name: Set environment variable for library installation source
188188
run: |

.github/workflows/changelog_reminder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: Changelog Reminder
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v2.4.0
8+
- uses: actions/checkout@v3
99
with:
1010
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
1111

.github/workflows/prepare_release.yaml

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

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v2.4.0
22+
uses: actions/checkout@v3
2323

2424
- name: Set environment variable for current library version
2525
run: |

.github/workflows/verify_library_json.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
if: "!contains(github.event.head_commit.message, 'ci skip')"
1010

1111
steps:
12-
- uses: actions/checkout@v2.4.0
12+
- uses: actions/checkout@v3
1313

1414
- name: Set up Python
1515
uses: actions/setup-python@v3

0 commit comments

Comments
 (0)