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
4 changes: 2 additions & 2 deletions .github/workflows/build-test-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
runs-on: ${{ matrix.runner }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2.19.4
uses: step-security/harden-runner@v2.20.0
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || github.sha }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
actions: read
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:

steps:
- name: Harden Runner
uses: step-security/harden-runner@v2.19.4
uses: step-security/harden-runner@v2.20.0
with:
egress-policy: audit

- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Go
uses: actions/setup-go@v6
Expand Down Expand Up @@ -69,13 +69,13 @@ jobs:
go test -fuzz=FuzzMountAttributes -fuzztime=10s ./server/

- name: Setup Helm
uses: Azure/setup-helm@v5
uses: Azure/setup-helm@v5.0.1

- name: Helm lint
run: helm lint charts/*

- name: Codecov
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
fail_ci_if_error: true
use_oidc: true
6 changes: 3 additions & 3 deletions .github/workflows/integ.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ jobs:
run: echo "Running integration tests for ${{ inputs.imageRepo }}:${{ env.imageTag }}"

- name: Harden Runner
uses: step-security/harden-runner@v2.19.4
uses: step-security/harden-runner@v2.20.0
with:
egress-policy: audit

- name: Setup kubectl
uses: azure/setup-kubectl@v5

- name: Setup Helm
uses: azure/setup-helm@v5
uses: azure/setup-helm@v5.0.1

- name: Setup eksctl
run: |
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Harden Runner
uses: step-security/harden-runner@v2.19.4
uses: step-security/harden-runner@v2.20.0
with:
egress-policy: audit

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
imageTag: ${{ steps.extract.outputs.imageTag }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Extract image repo and tag from values.yaml
id: extract
run: |
Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: block
allowed-endpoints: >
Expand All @@ -55,7 +55,7 @@ jobs:
get.helm.sh:443

- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0

Expand All @@ -65,7 +65,7 @@ jobs:
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"

- name: Setup Helm
uses: Azure/setup-helm@dda3372f752e03dde6b3237bc9431cdc2f7a02a2 # v5.0.0
uses: Azure/setup-helm@9bc31f4ebc9c6b171d7bfbaa5d006ae7abdb4310 # v5.0.1
- name: Add SSCD Helm Repo
run: helm repo add secrets-store-csi-driver https://kubernetes-sigs.github.io/secrets-store-csi-driver/charts

Expand Down