diff --git a/.github/workflows/update-dependencies.yaml b/.github/workflows/update-dependencies.yaml index 89fc6437c..e6bc9093e 100644 --- a/.github/workflows/update-dependencies.yaml +++ b/.github/workflows/update-dependencies.yaml @@ -7,7 +7,7 @@ on: jobs: update-dependencies: - name: Update Go version, Helm charts dependencies and Hauler manifest + name: Update Rust toolchain, Helm chart dependencies and Hauler manifest runs-on: ubuntu-latest permissions: contents: read diff --git a/updatecli/DEVELOPING.md b/updatecli/DEVELOPING.md index 326129e97..52ad68e60 100644 --- a/updatecli/DEVELOPING.md +++ b/updatecli/DEVELOPING.md @@ -47,7 +47,7 @@ All dependency updates are consolidated into a single weekly workflow. Runs weekly (Monday 3:30 AM) via `.github/workflows/update-dependencies.yaml` using `update-deps.yaml`. Updates the following dependencies: -- Go version in `go.mod` and Dockerfiles +- Rust toolchain version - Policy image tags in Helm chart values - Policy-reporter and openreports chart versions - Kuberlr-kubectl image version diff --git a/updatecli/update-deps.yaml b/updatecli/update-deps.yaml index af1142b84..7e53462b9 100644 --- a/updatecli/update-deps.yaml +++ b/updatecli/update-deps.yaml @@ -1,7 +1,6 @@ policies: - - name: Update Go version, Rust toolchain, Helm chart dependencies and Hauler manifest + - name: Update Rust toolchain, Helm chart dependencies and Hauler manifest config: - - ./updatecli.d/go.yaml - ./updatecli.d/update-rust-toolchain.yaml - ./updatecli.d/update-chart-deps.yaml - ./updatecli.d/update-hauler-manifest.yaml diff --git a/updatecli/updatecli.d/go.yaml b/updatecli/updatecli.d/go.yaml deleted file mode 100644 index 077990df9..000000000 --- a/updatecli/updatecli.d/go.yaml +++ /dev/null @@ -1,59 +0,0 @@ -name: Update Golang version - -pipelineid: golang/version - -sources: - go: - name: Get latest Golang version - kind: golang - -conditions: - docker: - name: Check Docker image tag - kind: dockerimage - sourceid: go - spec: - image: golang - -targets: - gomod: - name: 'deps(go): update Go version to {{ source "go" }}' - sourceid: go - kind: golang/gomod - scmid: default - spec: - file: go.mod - -actions: - default: - title: 'deps(go): update Go to {{ source "go" }} version' - kind: github/pullrequest - scmid: default - spec: - automerge: false - mergemethod: squash - description: | - Automatic Golang version {{ source "go" }} update. - This PR has been created by the automation used to automatically update the Golang version in the kubewarden-controller project - REMEMBER IF YOU WANT TO MERGE IN A SINGLE COMMIT CHANGES AND VERSION BUMP, YOU MUST SQUASH THE COMMIT BEFORE MERGING THIS PR! - draft: false - labels: - - "chore" - - "dependencies" - -scms: - default: - kind: github - spec: - user: "{{ .github.author }}" - email: "{{ .github.email }}" - owner: "{{ requiredEnv .github.owner }}" - repository: "kubewarden-controller" - branch: "{{ .github.branch }}" - commitusingapi: true - commitmessage: - type: "chore" - scope: deps - title: "update Golang version" - footers: "Signed-off-by: kubewarden-controller bot " - hidecredit: true