diff --git a/.github/workflows/extension_bump.yml b/.github/workflows/extension_bump.yml index a1f95707ea6340d9373a187daac908f001f00abf..263b42a50a8d0d68ce78f08295ede3ff3f715b77 100644 --- a/.github/workflows/extension_bump.yml +++ b/.github/workflows/extension_bump.yml @@ -96,7 +96,7 @@ jobs: --no-configured-files ${{ inputs.bump-type }} "${BUMP_FILES[@]}" if [[ -f "Cargo.toml" ]]; then - cargo update --workspace --offline + cargo update --workspace fi NEW_VERSION="$(sed -n 's/version = \"\(.*\)\"/\1/p' < extension.toml)" @@ -115,7 +115,7 @@ jobs: token: ${{ steps.generate-token.outputs.token }} sign-commits: true assignees: ${{ github.actor }} - timeout-minutes: 1 + timeout-minutes: 3 create_version_label: needs: - check_version_changed diff --git a/tooling/xtask/src/tasks/workflows/extension_bump.rs b/tooling/xtask/src/tasks/workflows/extension_bump.rs index e7a7a467388fdebeeefd9fdcd8540b56cd43f43b..d19ae9bdedd72352d138dabb2452fde64464490d 100644 --- a/tooling/xtask/src/tasks/workflows/extension_bump.rs +++ b/tooling/xtask/src/tasks/workflows/extension_bump.rs @@ -195,7 +195,7 @@ fn bump_extension_version( version_changed = version_changed_output.expr(), ))) .runs_on(runners::LINUX_SMALL) - .timeout_minutes(1u32) + .timeout_minutes(3u32) .add_step(generate_token) .add_step(steps::checkout_repo()) .add_step(install_bump_2_version()) @@ -271,7 +271,7 @@ fn bump_version(current_version: &JobOutput, bump_type: &WorkflowInput) -> (Step --no-configured-files {bump_type} "${{BUMP_FILES[@]}}" if [[ -f "Cargo.toml" ]]; then - cargo update --workspace --offline + cargo update --workspace fi NEW_VERSION="$({VERSION_CHECK})"