Skip to content

Commit 8269fdf

Browse files
committed
fix: add relative paths
1 parent ee5ba72 commit 8269fdf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v3
1818
with:
19-
go-version: 1 'stable'
19+
go-version: '1.21'
2020

2121
- name: Run tests
2222
run: go test ./src/... -v

.github/workflows/update_advisory.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
go-version: '1.21'
2626

2727
- name: Build Go application
28-
run: go build -o update-advisory src/main.go
28+
run: go build -o update-advisory ./src/main.go
2929

3030
- name: Run Go application
3131
run: ./update-advisory
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
git config user.name "github-actions[bot]"
3939
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"2
40-
git add advisories/V8-advisory.json
41-
git add src/V8-cache.json
40+
git add ./advisories/V8-advisory.json
41+
git add ./src/V8-cache.json
4242
git commit3 -m "Update advisories/V8_advisory.json and src/V8-cache.json"
4343
git push

0 commit comments

Comments
 (0)