Skip to content
Merged
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/create-tag-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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 @@ -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 }}
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.4.0
uses: dependabot/fetch-metadata@v2.5.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-static-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 @@ -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 }}
Expand All @@ -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 }}"
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 @@ -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 }}
Expand All @@ -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 }}"
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 @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/operator-driver-version-update.yaml
Original file line number Diff line number Diff line change
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.2.0
uses: actions/create-github-app-token@v2.2.1
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand All @@ -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 }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/operator-module-version-update.yaml
Original file line number Diff line number Diff line change
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.2.0
uses: actions/create-github-app-token@v2.2.1
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand All @@ -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 }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/operator-version-update.yaml
Original file line number Diff line number Diff line change
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.2.0
uses: actions/create-github-app-token@v2.2.1
id: generate-token
with:
app-id: ${{ vars.CSM_RELEASE_APP_ID }}
Expand All @@ -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 }}"
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 @@ -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
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 @@ -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 }}
Expand All @@ -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"
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 @@ -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:
Expand All @@ -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"
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 @@ -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"
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 @@ -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"
Expand Down