Skip to content

Commit

Permalink
update github actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
hgarvison committed Jan 7, 2025
1 parent 9f3cc1a commit 3421789
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
uses: github/codeql-action/analyze@v3

- name: Aqua Security Trivy
uses: aquasecurity/trivy-action@0.28.0
uses: aquasecurity/trivy-action@0.29.0
with:
scan-type: 'fs'
scan-ref: '.'
Expand All @@ -106,7 +106,7 @@ jobs:
severity: UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'

Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
- tools/importkey/**
- pkg/common/akv.go
- pkg/common/keyblob.go

permissions:
contents: write # needed to create release

env:
GO_VERSION: "1.23.x"
Expand Down Expand Up @@ -44,7 +47,7 @@ jobs:
GOARCH: amd64

- name: Upload Executables
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: binaries
path: |
Expand All @@ -59,12 +62,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: binaries

- name: Publish release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
files: |
Expand Down

0 comments on commit 3421789

Please sign in to comment.