Skip to content

Commit

Permalink
use correct remote package name in actions
Browse files Browse the repository at this point in the history
Signed-off-by: Avi Deitcher <[email protected]>
  • Loading branch information
deitch authored and eriknordmark committed Jul 24, 2023
1 parent 665697b commit d260db5
Show file tree
Hide file tree
Showing 20 changed files with 4,357 additions and 4,406 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,17 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- uses: arduino/setup-protoc@v1
- uses: arduino/setup-protoc@v2
with:
version: '3.x'
version: '21.9'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-go@v2
with:
go-version: ^1.20
- name: install protodot
run: go install https://github.com/seamia/[email protected]
run: go install github.com/seamia/[email protected]
- name: install protoc-gen-go
run: go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: make
Expand All @@ -38,4 +41,8 @@ jobs:
# we run it twice, so that it will report on the logs
echo "changed and uncommitted files"
git status --short
[ $(git status --short) != '' ] && exit 1
if [ $(git status --short) != '' ]; then
# print the diff so we can fix it, if there is an issue
git diff
exit 1
fi
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ proto-diagram:
.PHONY: proto-api-%

proto: go python proto-diagram
@echo Done building protobuf, you may want to vendor it into your packages, e.g. `pkg/pillar`.
@echo Done building protobuf, you may want to vendor it into your packages, e.g. pkg/pillar.
@echo See ./go/README.md for more information.

go: PROTOC_OUT_OPTS=paths=source_relative:
Expand Down
26 changes: 13 additions & 13 deletions go/attest/attest.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion go/certs/certs.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions go/config/baseosconfig.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 10 additions & 17 deletions go/config/devconfig.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 15 additions & 27 deletions go/config/devmodel.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions go/config/fw.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 9 additions & 11 deletions go/config/netinst.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions go/config/storage.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d260db5

Please sign in to comment.