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
2 changes: 1 addition & 1 deletion .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v5
- uses: actions/checkout@v6
# Runs a set of commands using the runners shell
- name: Invoke run_test
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-tag-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csm-release-libs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch the full history including tags
- name: Set up Go
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/csm-versions-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get CSM Versions from dell/csm
id: vars
Expand All @@ -40,7 +40,7 @@ jobs:
# Needed for signing commits using Github App tokens
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
- name: Generate GitHub App Token
uses: actions/create-github-app-token@v2.1.4
uses: actions/create-github-app-token@v2.2.0
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/go-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Go
uses: actions/setup-go@v6
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Run Gosec
uses: dell/common-github-actions/gosec-runner@main
Expand All @@ -112,7 +112,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: gofmt and go vet
uses: dell/common-github-actions/go-code-formatter-vetter@main
Expand All @@ -123,7 +123,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Run malware scan
uses: dell/common-github-actions/malware-scanner@main
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go-static-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
go-version: "1.25"
cache: false
- name: Checkout the code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Grab golangci-lint config file
continue-on-error: true
run: |
Expand All @@ -50,7 +50,7 @@ jobs:
run: |
go mod vendor
- name: golangci-lint
uses: golangci/golangci-lint-action@v8.0.0
uses: golangci/golangci-lint-action@v9.1.0
with:
version: latest
skip-cache: true
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: setup python
uses: actions/setup-python@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-version-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
check-latest: true

- name: Checkout the code
uses: actions/checkout@v5
uses: actions/checkout@v6

# This step will update the go version in:
# 1 - go.mod files and go.mod toolchain, if found
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:

# Needed for signing commits using Github App tokens
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
- uses: actions/create-github-app-token@v2.1.4
- uses: actions/create-github-app-token@v2.2.0
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/image-version-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch the full history including the tags

Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:

# Needed for signing commits using Github App tokens
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
- uses: actions/create-github-app-token@v2.1.4
- uses: actions/create-github-app-token@v2.2.0
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license-checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/operator-driver-version-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout csm repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: dell/csm
path: csm
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
echo "CSI_UNITY=$csi_unity" >> $GITHUB_ENV

- name: Checkout csm-operator repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: dell/csm-operator

Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
# Needed for signing commits using Github App tokens
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
- name: Generate GitHub App Token
uses: actions/create-github-app-token@v2.1.4
uses: actions/create-github-app-token@v2.2.0
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/operator-module-version-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout csm repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: dell/csm
path: csm
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
echo "OTEL_COLLECTOR=$otel_collector" >> $GITHUB_ENV

- name: Checkout csm-operator repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: dell/csm-operator

Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
# Needed for signing commits using Github App tokens
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
- name: Generate GitHub App Token
uses: actions/create-github-app-token@v2.1.4
uses: actions/create-github-app-token@v2.2.0
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/operator-version-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout csm repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: dell/csm
path: csm
Expand All @@ -46,7 +46,7 @@ jobs:
echo "CSM_OPERATOR=$csm_operator" >> $GITHUB_ENV

- name: Checkout csm-operator repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: dell/csm-operator

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
# Needed for signing commits using Github App tokens
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
- name: Generate GitHub App Token
uses: actions/create-github-app-token@v2.1.4
uses: actions/create-github-app-token@v2.2.0
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-creator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
rel_version: ${{ steps.create-rel-branch.outputs.rel_version }}
steps:
- name: Checkout the code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch the full history including tags
ref: ${{ github.ref }} # Checkout the branch from which the workflow is triggered
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scanner-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Malware Scanner
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Malware Scanner
uses: ./malware-scanner
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sidecar-version-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Update sidecar version
run: |
Expand All @@ -63,7 +63,7 @@ jobs:
# Needed for signing commits using Github App tokens
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
- name: Generate GitHub App Token
uses: actions/create-github-app-token@v2.1.4
uses: actions/create-github-app-token@v2.2.0
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubi-version-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install dependencies
id: check-skopeo
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

# Needed for signing commits using Github App tokens
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
- uses: actions/create-github-app-token@v2.1.4
- uses: actions/create-github-app-token@v2.2.0
if: env.sha_mismatch == 'true'
id: generate-token
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-libraries-to-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v6
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:

# Needed for signing commits using Github App tokens
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
- uses: actions/create-github-app-token@v2.1.4
- uses: actions/create-github-app-token@v2.2.0
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v6
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:

# Needed for signing commits using Github App tokens
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
- uses: actions/create-github-app-token@v2.1.4
- uses: actions/create-github-app-token@v2.2.0
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand Down