Skip to content

Commit

Permalink
Merge pull request #52 from arduino/dependabot/github_actions/actions…
Browse files Browse the repository at this point in the history
…/checkout-3

Bump actions/checkout from 2 to 3
  • Loading branch information
per1234 authored Mar 22, 2022
2 parents 90de8ba + 65c09c5 commit afbfe52
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Run the set up script
id: setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-shell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

# Recursively lint all shell scripts in the repository
# See: https://github.com/azohra/shell-linter/blob/latest/README.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Spell check
uses: arduino/actions/libraries/spell-check@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Download JSON schema for labels configuration file
id: download-schema
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
echo "::set-output name=flag::--dry-run"
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Download configuration files artifact
uses: actions/download-artifact@v2
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:

steps:
- name: Checkout Servo library
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: arduino-libraries/servo
ref: 1.1.7

- name: Checkout local repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# Must be checked out to a subfolder to not interfere with the checked out library under test
path: extras/compile-sketches
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Run action
# Use action from local path
Expand Down Expand Up @@ -166,21 +166,21 @@ jobs:
steps:
- name: Checkout library
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: arduino-libraries/Servo
ref: 1.1.7

- name: Checkout platform
if: matrix.board.source-type == 'path'
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: arduino/ArduinoCore-avr
ref: 1.8.3
path: extras/ArduinoCore-avr

- name: Checkout local repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: extras/compile-sketches

Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
steps:
# Checkout is needed to get the golden reports
- name: Checkout local repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Download sketches reports artifact
uses: actions/download-artifact@v2
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:

steps:
- name: Checkout local repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Compile sketch that is expected to error
id: compile-sketches
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Run the set up script
id: setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-action_yml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout local repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# See: https://github.com/carlosperate/download-file-action/blob/master/README.md
- name: Download JSON schema for action.yml
Expand Down

0 comments on commit afbfe52

Please sign in to comment.