Skip to content

Commit

Permalink
.github/workflows: upgrade actions/checkout@v2 -> v3
Browse files Browse the repository at this point in the history
This should get rid of most warnings in daily tests

```
Node.js 12 actions are deprecated. For more information see:

https://github.blog/changelog/
 2022-09-22-github-actions-all-actions-will-begin-running-on-node16...
Please update the following actions to use Node.js 16: actions/checkout@v2
```

Example at
 https://github.com/thesofproject/sof/actions/runs/3597808171

v3 seems backward compatible. Upgrade only the most used instances for
now (most used because of the `matrix` of platforms), upgrade everything
in a few days if no issue is spotted.

Signed-off-by: Marc Herbert <[email protected]>
  • Loading branch information
marc-hb authored and lgirdwood committed Dec 7, 2022
1 parent 4a9a99a commit f71eb15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with: {fetch-depth: 5, submodules: recursive}

- name: docker
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with: {fetch-depth: 0, submodules: recursive}

- name: docker
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zephyr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# From time to time this will catch a git tag and change SOF_VERSION
with:
fetch-depth: 10
Expand Down

0 comments on commit f71eb15

Please sign in to comment.