Skip to content

Commit 1025317

Browse files
committed
Do not update dependencies when bumping versions
Yes, we do run automated tests with the new versions, but there is a concern about supply chain security here. I'd rather explicitly rely on our Dependabot pull requests that have a cooldown period configured to not accidentally include an insecure update when cutting a release.
1 parent f4a3e98 commit 1025317

2 files changed

Lines changed: 0 additions & 8 deletions

File tree

.github/workflows/bump-version-flutter-app.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ jobs:
6565
- name: Install dependencies
6666
run: flutter pub get --enforce-lockfile
6767

68-
- name: Update dependencies
69-
run: flutter pub upgrade --unlock-transitive
70-
7168
- name: Bump CalVer version for project
7269
env:
7370
INPUTS_FORMAT: ${{ inputs.format }}

.github/workflows/bump-version-rust.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,6 @@ jobs:
8181
with:
8282
tool: cargo-release
8383

84-
- name: Update cargo dependencies for package ${{ inputs.package }}
85-
env:
86-
INPUTS_PACKAGE: ${{ inputs.package }}
87-
run: cargo update --package "${INPUTS_PACKAGE}"
88-
8984
- name: Bump ${{ inputs.level }} version for package ${{ inputs.package }}
9085
env:
9186
INPUTS_PACKAGE: ${{ inputs.package }}

0 commit comments

Comments
 (0)