Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Adjust FOSSA API secret name #14918

Merged
merged 2 commits into from
Jan 12, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: read-all
jobs:
test:
name: Code Coverage
runs-on: ubuntu-22.04
runs-on: gh-hosted-runners-4cores-1
Copy link
Contributor Author

@mattlord mattlord Jan 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is unrelated, but should make the codecov workflow more reliable/stable.


steps:
- name: Check out code
Expand All @@ -32,7 +32,7 @@ jobs:
if: steps.changes.outputs.changed_files == 'true'
uses: actions/setup-go@v4
with:
go-version: 1.21.5
go-version: 1.21.6

- name: Set up python
if: steps.changes.outputs.changed_files == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static_checks_etc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
if: github.ref == 'refs/heads/main'
uses: fossa-contrib/fossa-action@v2
with:
fossa-api-key: ${{secrets.fossaApiKey}}
fossa-api-key: ${{ secrets.FOSSA_API_KEY }}

- name: Check for changes in Go files
if: steps.skip-workflow.outputs.skip-workflow == 'false'
Expand Down
Loading