1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #18730 from miri64/gh-actions/enh/checkout-master

gh-actions: move actions/checkout to main
This commit is contained in:
Martine Lenders 2022-10-13 06:47:52 +02:00 committed by GitHub
commit 10ca5ec461
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 8 additions and 8 deletions

View File

@ -21,7 +21,7 @@ jobs:
matrix:
check: [commit-msg, pr_check]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
with:
# Use the SHA of the PR branch as-is, not the PR branch merged
# in master (default behavior in GH actions)

View File

@ -88,14 +88,14 @@ jobs:
ssh -oStrictHostKeyChecking=accept-new \
${IOTLAB_USER}@lille.iot-lab.info exit
- name: Checkout Release-Specs
uses: actions/checkout@v2
uses: actions/checkout@main
with:
repository: RIOT-OS/Release-Specs
path: Release-Specs
fetch-depth: 1
ref: ${{ github.event.inputs.release_specs_version }}
- name: Checkout RIOT
uses: actions/checkout@v2
uses: actions/checkout@main
with:
repository: RIOT-OS/RIOT
path: RIOT

View File

@ -16,7 +16,7 @@ jobs:
static-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@main
with:
fetch-depth: 0
- name: Setup git

View File

@ -110,7 +110,7 @@ jobs:
run: |
docker pull riot/riotbuild:latest
- name: Checkout RIOT
uses: actions/checkout@v2
uses: actions/checkout@main
with:
ref: ${{ github.event.inputs.riot_version }}
- name: Launch IoT-LAB experiment

View File

@ -85,7 +85,7 @@ jobs:
APPLICATIONS_EXCLUDE: 'tests/periph_timer_short_relative_set'
steps:
- name: Checkout RIOT
uses: actions/checkout@v2
uses: actions/checkout@main
with:
ref: ${{ github.event.inputs.riot_version }}
# Make sure it runs git clean -xdff before fetching

View File

@ -14,7 +14,7 @@ jobs:
tools-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
- name: Build flatc standalone
uses: aabadie/riot-action@v1
with:

View File

@ -14,7 +14,7 @@ jobs:
python-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with: