Skip to content
Merged
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 .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: 2
updates:
- package-ecosystem: gomod
directory: "sourcetool"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Run Go tests
run: |
go test ./sourcetool/...
go test ./...

- name: Check generated fakes
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
cache: false

- run: |
cd sourcetool && go get -d ./...
go get -d ./...

- name: Run golangci-lint
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
with:
version: v2.1
working-directory: sourcetool

2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: sourcetool/go.mod
go-version-file: go.mod
cache: false

- name: Install tejolote
Expand Down
4 changes: 2 additions & 2 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:

before:
hooks:
- /bin/bash -c 'cd sourcetool && go mod tidy'
- /bin/bash -c 'go mod tidy'
- /bin/bash -c 'if [ -n "$(git --no-pager diff --exit-code go.mod go.sum)" ]; then exit 1; fi'

gomod:
Expand All @@ -18,7 +18,7 @@ builds:
- id: release
no_unique_dist_dir: true
binary: sourcetool-{{ .Tag }}-{{ .Os }}-{{ .Arch }}
main: ./sourcetool/
main: ./
goos:
- darwin
- linux
Expand Down
2 changes: 1 addition & 1 deletion GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ First, enable continuity controls within the target GitHub repo.
2. Click the 'Settings' option
3. Click 'Rules -> Rulesets'
4. Click 'New Ruleset -> Import a ruleset'
5. Upload [rulesets/source_level_3_basic.json](rulesets/source_level_3_basic.json)
5. Upload [docs/rulesets/source_level_3_basic.json](docs/rulesets/source_level_3_basic.json)
6. Click 'Create'

## Enable Source PoC workflow
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ help:

.PHONY: fakes
fakes: ## Rebuild the implementation fakes
go generate ./sourcetool/...
go generate ./...

.PHONY: proto
proto: ## Rebuild the policies and provenance predicate from protocol buffer definitions
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Status: in development

## Design

[REQUIREMENTS_MAPPING.md](REQUIREMENTS_MAPPING.md) defines the rationale for how
[REQUIREMENTS_MAPPING.md](docs/REQUIREMENTS_MAPPING.md) defines the rationale for how
this tool meets the SLSA Source Requirements.

[DESIGN.md](DESIGN.md) explains more specifically how the system works.
[DESIGN.md](docs/DESIGN.md) explains more specifically how the system works.

## Components

Expand Down
4 changes: 2 additions & 2 deletions buf.gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ managed:
enabled: true
plugins:
- protoc_builtin: go
out: ./sourcetool/pkg
out: ./pkg
opt:
- paths=import
- module=github.com/slsa-framework/slsa-source-poc/sourcetool/pkg
- module=github.com/slsa-framework/slsa-source-poc/pkg
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
32 changes: 32 additions & 0 deletions docs/slsa-logo-large.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#####################################################
%#########################################################
######################################################### ######
#######################################################& ##########
###################################################% ##############
############################################## ##################
## ######################################## #####################
#### ################################## ########################
###### ############################ ############################
######## #################### ##############################
########## ########### #################################%
############# %#####################################
############### ##########################################
################## ############################################ ##
##################### ####################################### ####
######################## ################################ ######
############################ ######################### ########
################################ ################# ###########
#################################### ######## #############
######################################### ################
############################################### ###################
################################################ ######################
############################################ ##########################
####################################### ##############################
################################# ##################################
########################## #######################################
############### #############################################
####################################################
#############################################################
###########################################################################
#######################################################################
#################################################################
17 changes: 17 additions & 0 deletions docs/slsa-logo-small.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
###########################
############################ ###
#########################% #######
# #################### ##########
### ############## ##############
##### ###### ################%
######## #####################
########### #################### ##
############## ############ ####
################## #### ######
######################## #########
###################### #############
################# #################
######## ######################
###############################
###################################
#############################
2 changes: 1 addition & 1 deletion sourcetool/go.mod → go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/slsa-framework/slsa-source-poc/sourcetool
module github.com/slsa-framework/slsa-source-poc

go 1.24.5

Expand Down
File renamed without changes.
3 changes: 0 additions & 3 deletions go.work

This file was deleted.

Loading
Loading