Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
build:
runs-on: ubuntu-24.04-riscv
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: uname -m # prints riscv64
```

Expand Down
4 changes: 2 additions & 2 deletions website/docs/getting-started/configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
build:
runs-on: ubuntu-24.04-riscv
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: uname -m # riscv64
- run: gcc --version # native riscv64-linux-gnu-gcc
- run: make
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
docker:
runs-on: ubuntu-24.04-riscv
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: docker build -t myapp .
- run: docker run myapp
```
Expand Down
2 changes: 1 addition & 1 deletion website/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
build:
runs-on: ubuntu-24.04-riscv
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: uname -m # prints riscv64
```

Expand Down