Skip to content

Bump actions/checkout from 2 to 3 #52

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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