Skip to content
Open
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-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
uses: actions/checkout@v5

- name: Setup Golang
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
uses: actions/setup-go@v6
with:
go-version: 1.25.11

- name: golangci-lint
uses: golangci/golangci-lint-action@v9.2.1
uses: golangci/golangci-lint-action@v7
with:
version: v2.12.2

Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
run: govulncheck -test ./...

- name: Upload coverage report
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b
uses: actions/upload-artifact@v5
with:
name: coverage.txt
path: coverage.txt
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
IMAGE_NAME: ${{ env.IMAGE_NAME }}
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
uses: actions/checkout@v5

- name: Setup Golang
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
uses: actions/setup-go@v6
with:
go-version: 1.25.11

Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
echo "Hash of sbom.json is: $SBOM_DIGEST"

- name: Upload SBOM
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b
uses: actions/upload-artifact@v5
with:
name: sbom.json
path: sbom.json
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
echo "Hash of scan.json is: $SCAN_DIGEST"

- name: Upload vulnerability scan report
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@v5
with:
name: scan.json
path: scan.json
Expand All @@ -164,7 +164,7 @@ jobs:
needs: [provenance, scan, build]
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@v5

- name: Authenticate to GCP
uses: google-github-actions/auth@v2
Expand All @@ -182,7 +182,7 @@ jobs:
gcloud --quiet auth configure-docker

- name: Download files
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
uses: actions/download-artifact@v5
with:
merge-multiple: true
path: ./
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
yq -i 'select(.kind=="Deployment") .spec.template.spec.containers[0].image = "${{ env.IMAGE }}"' manifests/install.yaml

- name: Checkout github-actions
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: kubecost/github-actions
path: github-actions
Expand Down
Loading