diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 1e8a5c3..bcce22f 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -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: | diff --git a/.github/workflows/create-tag-release.yaml b/.github/workflows/create-tag-release.yaml index 19c4411..1910ef8 100644 --- a/.github/workflows/create-tag-release.yaml +++ b/.github/workflows/create-tag-release.yaml @@ -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 diff --git a/.github/workflows/csm-release-libs.yaml b/.github/workflows/csm-release-libs.yaml index bb53b06..30799e9 100644 --- a/.github/workflows/csm-release-libs.yaml +++ b/.github/workflows/csm-release-libs.yaml @@ -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 diff --git a/.github/workflows/csm-versions-update.yaml b/.github/workflows/csm-versions-update.yaml index 9d789f7..9d5d5a5 100644 --- a/.github/workflows/csm-versions-update.yaml +++ b/.github/workflows/csm-versions-update.yaml @@ -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 @@ -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 }} diff --git a/.github/workflows/go-common.yml b/.github/workflows/go-common.yml index c64786f..22907de 100644 --- a/.github/workflows/go-common.yml +++ b/.github/workflows/go-common.yml @@ -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 @@ -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 @@ -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 @@ -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: diff --git a/.github/workflows/go-static-analysis.yaml b/.github/workflows/go-static-analysis.yaml index 911316b..104f465 100644 --- a/.github/workflows/go-static-analysis.yaml +++ b/.github/workflows/go-static-analysis.yaml @@ -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: | @@ -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 @@ -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: diff --git a/.github/workflows/go-version-workflow.yaml b/.github/workflows/go-version-workflow.yaml index b12b677..6304351 100644 --- a/.github/workflows/go-version-workflow.yaml +++ b/.github/workflows/go-version-workflow.yaml @@ -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 @@ -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 }} diff --git a/.github/workflows/image-version-workflow.yaml b/.github/workflows/image-version-workflow.yaml index c63e8ed..fb74207 100644 --- a/.github/workflows/image-version-workflow.yaml +++ b/.github/workflows/image-version-workflow.yaml @@ -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 @@ -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 }} diff --git a/.github/workflows/license-checker.yaml b/.github/workflows/license-checker.yaml index d0019a8..bacb134 100644 --- a/.github/workflows/license-checker.yaml +++ b/.github/workflows/license-checker.yaml @@ -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 diff --git a/.github/workflows/operator-driver-version-update.yaml b/.github/workflows/operator-driver-version-update.yaml index 9320756..f413ee1 100644 --- a/.github/workflows/operator-driver-version-update.yaml +++ b/.github/workflows/operator-driver-version-update.yaml @@ -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 @@ -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 @@ -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 }} diff --git a/.github/workflows/operator-module-version-update.yaml b/.github/workflows/operator-module-version-update.yaml index 80f96c1..cabcba4 100644 --- a/.github/workflows/operator-module-version-update.yaml +++ b/.github/workflows/operator-module-version-update.yaml @@ -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 @@ -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 @@ -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 }} diff --git a/.github/workflows/operator-version-update.yaml b/.github/workflows/operator-version-update.yaml index 1fd96b8..5247539 100644 --- a/.github/workflows/operator-version-update.yaml +++ b/.github/workflows/operator-version-update.yaml @@ -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 @@ -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 @@ -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 }} diff --git a/.github/workflows/release-creator.yaml b/.github/workflows/release-creator.yaml index 6c2af03..f4e8376 100644 --- a/.github/workflows/release-creator.yaml +++ b/.github/workflows/release-creator.yaml @@ -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 diff --git a/.github/workflows/scanner-test.yml b/.github/workflows/scanner-test.yml index b3072da..71c4d7e 100644 --- a/.github/workflows/scanner-test.yml +++ b/.github/workflows/scanner-test.yml @@ -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: diff --git a/.github/workflows/sidecar-version-update.yaml b/.github/workflows/sidecar-version-update.yaml index f27d2dc..4e28542 100644 --- a/.github/workflows/sidecar-version-update.yaml +++ b/.github/workflows/sidecar-version-update.yaml @@ -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: | @@ -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 }} diff --git a/.github/workflows/ubi-version-update.yaml b/.github/workflows/ubi-version-update.yaml index d95cedc..9fcab7f 100644 --- a/.github/workflows/ubi-version-update.yaml +++ b/.github/workflows/ubi-version-update.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install dependencies id: check-skopeo @@ -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: diff --git a/.github/workflows/update-libraries-to-commits.yml b/.github/workflows/update-libraries-to-commits.yml index ce32dbe..a0b8452 100644 --- a/.github/workflows/update-libraries-to-commits.yml +++ b/.github/workflows/update-libraries-to-commits.yml @@ -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 @@ -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 }} diff --git a/.github/workflows/update-libraries.yml b/.github/workflows/update-libraries.yml index 9af05d7..9a9caa7 100644 --- a/.github/workflows/update-libraries.yml +++ b/.github/workflows/update-libraries.yml @@ -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 @@ -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 }}