Skip to content

Commit

Permalink
update checkout action to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmehl committed Aug 5, 2022
1 parent 5ae4d61 commit a085ecf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
steps:
- uses: actions/checkout@v3
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v1
```
If you would like to run other subcommands, you could use the following snippet which outputs a the SPDX bill of materials:
```yml
- uses: actions/checkout@v2
- name: REUSE Compliance Check
- uses: actions/checkout@v3
- name: REUSE SPDX SBOM
uses: fsfe/reuse-action@v1
with:
args: spdx
Expand All @@ -57,7 +57,7 @@ If you would like to run other subcommands, you could use the following snippet
In the same fashion, it is possible to add optional arguments like `--include-submodules`:

```yml
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v1
with:
Expand Down

0 comments on commit a085ecf

Please sign in to comment.