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

Update github-actions #63

Merged
merged 1 commit into from
Nov 10, 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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
raw.githubusercontent.com:443

- name: Checkout repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
uses: actions/checkout@3b9b8c884f6b4bb4d5be2779c26374abadae0871
with:
fetch-depth: 0
- name: Setup Go
Expand All @@ -34,7 +34,7 @@ jobs:

# Linting
- name: Linting
uses: golangci/golangci-lint-action@82fb3f49c21caa9527bf0335d412acbf02388f95
uses: golangci/golangci-lint-action@363026db346476e64026d11fad940c24c2bef93f
with:
version: latest
args: --config=./.github/.golangci.yml ./...
Expand All @@ -59,7 +59,7 @@ jobs:
sum.golang.org:443

- name: Checkout repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
uses: actions/checkout@3b9b8c884f6b4bb4d5be2779c26374abadae0871
with:
fetch-depth: 0
- name: Setup Go
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
storage.googleapis.com:443

- name: Checkout repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
uses: actions/checkout@3b9b8c884f6b4bb4d5be2779c26374abadae0871
with:
fetch-depth: 0
- name: Setup Go
Expand All @@ -106,7 +106,7 @@ jobs:

# Codecov
- name: Codecov
uses: codecov/codecov-action@e43f28e103e52bb26d252b5a97fcdfa06175321e
uses: codecov/codecov-action@1d6059880cab9176d33e31e0f1ab076b20495f5e
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ jobs:
api.github.com:443 github.com:443 objects.githubusercontent.com:443 proxy.golang.org:443 storage.googleapis.com:443 sum.golang.org:443 uploads.github.com:443

- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
uses: actions/checkout@3b9b8c884f6b4bb4d5be2779c26374abadae0871

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@cbe18979603527f12c7871a6eb04833ecf1548c7
uses: github/codeql-action/init@acb9cb18eec7e3a113ef83cff0be91e75cfd9526
with:
languages: go

- name: Autobuild
uses: github/codeql-action/autobuild@cbe18979603527f12c7871a6eb04833ecf1548c7
uses: github/codeql-action/autobuild@acb9cb18eec7e3a113ef83cff0be91e75cfd9526

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@cbe18979603527f12c7871a6eb04833ecf1548c7
uses: github/codeql-action/analyze@acb9cb18eec7e3a113ef83cff0be91e75cfd9526
6 changes: 3 additions & 3 deletions .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
www.bestpractices.dev:443

- name: "Checkout code"
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
uses: actions/checkout@3b9b8c884f6b4bb4d5be2779c26374abadae0871
with:
persist-credentials: false

- name: "Run analysis"
uses: ossf/scorecard-action@72803a12483ed6f4f7c34f804818169f50162e37
uses: ossf/scorecard-action@08f935069d990d2675a557ebcecc774477e7c55c
with:
results_file: results.sarif
results_format: sarif
Expand All @@ -69,6 +69,6 @@ jobs:

# required for Code scanning alerts
- name: "Upload SARIF results to code scanning"
uses: github/codeql-action/upload-sarif@cbe18979603527f12c7871a6eb04833ecf1548c7
uses: github/codeql-action/upload-sarif@acb9cb18eec7e3a113ef83cff0be91e75cfd9526
with:
sarif_file: results.sarif
Loading