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:
commit
10ca5ec461
2
.github/workflows/check-pr.yml
vendored
2
.github/workflows/check-pr.yml
vendored
@ -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)
|
||||
|
4
.github/workflows/release-test.yml
vendored
4
.github/workflows/release-test.yml
vendored
@ -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
|
||||
|
2
.github/workflows/static-test.yml
vendored
2
.github/workflows/static-test.yml
vendored
@ -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
|
||||
|
2
.github/workflows/test-on-iotlab.yml
vendored
2
.github/workflows/test-on-iotlab.yml
vendored
@ -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
|
||||
|
2
.github/workflows/test-on-ryot.yml
vendored
2
.github/workflows/test-on-ryot.yml
vendored
@ -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
|
||||
|
2
.github/workflows/tools-buildtest.yml
vendored
2
.github/workflows/tools-buildtest.yml
vendored
@ -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:
|
||||
|
2
.github/workflows/tools-test.yml
vendored
2
.github/workflows/tools-test.yml
vendored
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user