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/dashboards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
fetch-depth: 0

- name: Set up golang
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ env.golang-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/project-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
stale-issues-handler:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
- uses: actions/stale@v9
with:
any-of-labels: 'needs-more-info,question'
stale-pr-label: 'stale'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sec-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ on:
env:
golang-version: 1.18.4
helm-version: v3.11.0
kubescape-version: v2.0.183
kubescape-version: v3.0.38

jobs:
security-audit:
runs-on: ubuntu-latest
name: Analyse kubernetes manifests
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
with:
persist-credentials: false

- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version: ${{ env.golang-version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up chart-testing
Expand All @@ -35,7 +35,7 @@ jobs:
- "1.24"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Increase fs watchers
Expand Down
Loading