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 #50

Merged
merged 1 commit into from
Sep 7, 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
8 changes: 4 additions & 4 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@2d7d9f7ff5b310f983d059b68785b3c74d8b8edd
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc
with:
fetch-depth: 0
- name: Setup Go
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
sum.golang.org:443

- name: Checkout repo
uses: actions/checkout@2d7d9f7ff5b310f983d059b68785b3c74d8b8edd
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc
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@2d7d9f7ff5b310f983d059b68785b3c74d8b8edd
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc
with:
fetch-depth: 0
- name: Setup Go
Expand All @@ -106,7 +106,7 @@ jobs:

# Codecov
- name: Codecov
uses: codecov/codecov-action@4b21c320b5517fc6ffd4406a28e66325c721dc20
uses: codecov/codecov-action@8bacbcdafc25d23d7ccbf06e9aaf78c95a290f21
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@2d7d9f7ff5b310f983d059b68785b3c74d8b8edd
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc

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

- name: Autobuild
uses: github/codeql-action/autobuild@889597e41d183636b55d03e1a49c44753c626a2e
uses: github/codeql-action/autobuild@d8b1697e9a833a1f8cd88c642a6bd8685d3ee856

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@889597e41d183636b55d03e1a49c44753c626a2e
uses: github/codeql-action/analyze@d8b1697e9a833a1f8cd88c642a6bd8685d3ee856
4 changes: 2 additions & 2 deletions .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
www.bestpractices.dev:443

- name: "Checkout code"
uses: actions/checkout@2d7d9f7ff5b310f983d059b68785b3c74d8b8edd
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc
with:
persist-credentials: false

Expand Down Expand Up @@ -69,6 +69,6 @@ jobs:

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