diff --git a/.github/workflows/create-tag-release.yaml b/.github/workflows/create-tag-release.yaml index 1910ef8a..313bacea 100644 --- a/.github/workflows/create-tag-release.yaml +++ b/.github/workflows/create-tag-release.yaml @@ -68,7 +68,7 @@ jobs: - name: Upload Binaries if: ${{ env.BIN_NAME != '' }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 env: BIN_NAME: ${{ env.BIN_NAME }} with: diff --git a/.github/workflows/csm-versions-update.yaml b/.github/workflows/csm-versions-update.yaml index 9d5d5a53..f9539568 100644 --- a/.github/workflows/csm-versions-update.yaml +++ b/.github/workflows/csm-versions-update.yaml @@ -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.2.0 + uses: actions/create-github-app-token@v2.2.1 id: generate-token with: app-id: ${{ vars.CSM_RELEASE_APP_ID }} @@ -49,7 +49,7 @@ jobs: # Must enable "allow GitHub Actions to create pull requests" setting # Author defaults to the user who triggered the workflow run - name: Create pull request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ steps.generate-token.outputs.token }} branch: "update-csm-versions-to-latest" diff --git a/.github/workflows/go-common.yml b/.github/workflows/go-common.yml index 22907de5..ae353716 100644 --- a/.github/workflows/go-common.yml +++ b/.github/workflows/go-common.yml @@ -75,7 +75,7 @@ jobs: - name: Upload coverprofile if: ${{ !cancelled() }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: code-coverage path: ${{ steps.test_coverage.outputs.code_coverage_artifact }} diff --git a/.github/workflows/go-static-analysis.yaml b/.github/workflows/go-static-analysis.yaml index 104f4656..00e1bd30 100644 --- a/.github/workflows/go-static-analysis.yaml +++ b/.github/workflows/go-static-analysis.yaml @@ -50,7 +50,7 @@ jobs: run: | go mod vendor - name: golangci-lint - uses: golangci/golangci-lint-action@v9.1.0 + uses: golangci/golangci-lint-action@v9.2.0 with: version: latest skip-cache: true diff --git a/.github/workflows/go-version-workflow.yaml b/.github/workflows/go-version-workflow.yaml index 63043510..f7c9e11a 100644 --- a/.github/workflows/go-version-workflow.yaml +++ b/.github/workflows/go-version-workflow.yaml @@ -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.2.0 + - uses: actions/create-github-app-token@v2.2.1 id: generate-token with: app-id: ${{ vars.CSM_RELEASE_APP_ID }} @@ -86,7 +86,7 @@ jobs: # Must enable "allow GitHub Actions to create pull requests" setting # Author defaults to the user who triggered the workflow run - name: Create pull request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ steps.generate-token.outputs.token }} branch: "go-${{ env.major_version }}" diff --git a/.github/workflows/image-version-workflow.yaml b/.github/workflows/image-version-workflow.yaml index fb742071..73a0c6ec 100644 --- a/.github/workflows/image-version-workflow.yaml +++ b/.github/workflows/image-version-workflow.yaml @@ -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.2.0 + - uses: actions/create-github-app-token@v2.2.1 id: generate-token with: app-id: ${{ vars.CSM_RELEASE_APP_ID }} @@ -116,7 +116,7 @@ jobs: # Must enable "allow GitHub Actions to create pull requests" setting # Author defaults to the user who triggered the workflow run - name: Create pull request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ steps.generate-token.outputs.token }} branch: "updateImage-${{ env.NEW_VERSION }}" diff --git a/.github/workflows/license-checker.yaml b/.github/workflows/license-checker.yaml index bacb134c..f65741e1 100644 --- a/.github/workflows/license-checker.yaml +++ b/.github/workflows/license-checker.yaml @@ -38,7 +38,7 @@ jobs: exclude-files: ${{ inputs.file-exclusions-list }} - name: Create Pull Request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GITHUB_TOKEN }} branch: autofix/license-header diff --git a/.github/workflows/operator-driver-version-update.yaml b/.github/workflows/operator-driver-version-update.yaml index f413ee1a..c05c45f2 100644 --- a/.github/workflows/operator-driver-version-update.yaml +++ b/.github/workflows/operator-driver-version-update.yaml @@ -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.2.0 + uses: actions/create-github-app-token@v2.2.1 id: generate-token with: app-id: ${{ vars.CSM_RELEASE_APP_ID }} @@ -108,7 +108,7 @@ jobs: # Must enable "allow GitHub Actions to create pull requests" setting # Author defaults to the user who triggered the workflow run - name: Create pull request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ steps.generate-token.outputs.token }} branch: "operator-driver-ver-bumpup-${{ inputs.csm-version }}" diff --git a/.github/workflows/operator-module-version-update.yaml b/.github/workflows/operator-module-version-update.yaml index cabcba4f..5ccf71ca 100644 --- a/.github/workflows/operator-module-version-update.yaml +++ b/.github/workflows/operator-module-version-update.yaml @@ -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.2.0 + uses: actions/create-github-app-token@v2.2.1 id: generate-token with: app-id: ${{ vars.CSM_RELEASE_APP_ID }} @@ -114,7 +114,7 @@ jobs: # Must enable "allow GitHub Actions to create pull requests" setting # Author defaults to the user who triggered the workflow run - name: Create pull request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ steps.generate-token.outputs.token }} branch: "operator-module-version-update-${{ inputs.csm-version }}" diff --git a/.github/workflows/operator-version-update.yaml b/.github/workflows/operator-version-update.yaml index 5247539e..9623f993 100644 --- a/.github/workflows/operator-version-update.yaml +++ b/.github/workflows/operator-version-update.yaml @@ -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.2.0 + uses: actions/create-github-app-token@v2.2.1 id: generate-token with: app-id: ${{ vars.CSM_RELEASE_APP_ID }} @@ -84,7 +84,7 @@ jobs: # Must enable "allow GitHub Actions to create pull requests" setting # Author defaults to the user who triggered the workflow run - name: Create pull request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ steps.generate-token.outputs.token }} branch: "operator-version-update-${{ inputs.csm-version }}" diff --git a/.github/workflows/release-creator.yaml b/.github/workflows/release-creator.yaml index f4e83764..4db0db07 100644 --- a/.github/workflows/release-creator.yaml +++ b/.github/workflows/release-creator.yaml @@ -105,7 +105,7 @@ jobs: git push origin $REL_VERSION - name: Download binary - uses: actions/download-artifact@v6.0.0 + uses: actions/download-artifact@v7.0.0 # This is required to check if the binary exists and update its name to the release. - name: Set file name diff --git a/.github/workflows/sidecar-version-update.yaml b/.github/workflows/sidecar-version-update.yaml index 4e28542e..e47889ca 100644 --- a/.github/workflows/sidecar-version-update.yaml +++ b/.github/workflows/sidecar-version-update.yaml @@ -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.2.0 + uses: actions/create-github-app-token@v2.2.1 id: generate-token with: app-id: ${{ vars.CSM_RELEASE_APP_ID }} @@ -72,7 +72,7 @@ jobs: # Must enable "allow GitHub Actions to create pull requests" setting # Author defaults to the user who triggered the workflow run - name: Create pull request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ steps.generate-token.outputs.token }} branch: "sidecar-version-update" diff --git a/.github/workflows/ubi-version-update.yaml b/.github/workflows/ubi-version-update.yaml index 9fcab7f9..646bf8d1 100644 --- a/.github/workflows/ubi-version-update.yaml +++ b/.github/workflows/ubi-version-update.yaml @@ -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.2.0 + - uses: actions/create-github-app-token@v2.2.1 if: env.sha_mismatch == 'true' id: generate-token with: @@ -82,7 +82,7 @@ jobs: - name: Create Pull Request if: env.sha_mismatch == 'true' - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ steps.generate-token.outputs.token }} branch: "update-ubi-image-to-latest" diff --git a/.github/workflows/update-libraries-to-commits.yml b/.github/workflows/update-libraries-to-commits.yml index a0b84522..3543890e 100644 --- a/.github/workflows/update-libraries-to-commits.yml +++ b/.github/workflows/update-libraries-to-commits.yml @@ -95,14 +95,14 @@ 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.2.0 + - uses: actions/create-github-app-token@v2.2.1 id: generate-token with: app-id: ${{ vars.CSM_RELEASE_APP_ID }} private-key: ${{ secrets.CSM_RELEASE_APP_PRIVATE_KEY }} - name: Create Pull Request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ steps.generate-token.outputs.token }} branch: "update-dependencies-to-latest-commits" diff --git a/.github/workflows/update-libraries.yml b/.github/workflows/update-libraries.yml index 9a9caa77..c521fa67 100644 --- a/.github/workflows/update-libraries.yml +++ b/.github/workflows/update-libraries.yml @@ -79,14 +79,14 @@ 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.2.0 + - uses: actions/create-github-app-token@v2.2.1 id: generate-token with: app-id: ${{ vars.CSM_RELEASE_APP_ID }} private-key: ${{ secrets.CSM_RELEASE_APP_PRIVATE_KEY }} - name: Create Pull Request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ steps.generate-token.outputs.token }} branch: "update-dependencies-to-latest-released"