Skip to content

Commit

Permalink
ci: Fix apt-get command in bump.yml
Browse files Browse the repository at this point in the history
The bump.yml workflow, running on a schedule, has always failed to
complete so far [0]. This is because an "apt-get" command is missing the
"install" subcommand, resulting in apt trying to interpret the name of
the package we want to install as a subcommand, making the workflow
fail.

Fix the command, to hopefully make the workflow succeed.

[0] https://github.com/githedgehog/dataplane/actions/workflows/bump.yml

Fixes: 08ac167 ("build: Rework many parts of the build framework")
Signed-off-by: Quentin Monnet <[email protected]>
  • Loading branch information
qmonnet committed Dec 3, 2024
1 parent 4287772 commit 2ae0fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: "install envsubst"
run: |
sudo apt-get update
sudo apt-get --yes --no-install-recommends gettext
sudo apt-get install --yes --no-install-recommends gettext
- run: |
./scripts/update-versions.sh
- name: "Create Pull Request"
Expand Down

0 comments on commit 2ae0fac

Please sign in to comment.