25 lines
631 B
Markdown
25 lines
631 B
Markdown
---
|
|
{}
|
|
---
|
|
|
|
- [x] Update Gitlab to 15.11.13-ce.0 [start:: 2023-08-14] [scheduled:: 2023-08-14] [due:: 2023-08-14] [completion:: 2023-08-15]
|
|
- [x] Update Gitlab to 16.x [start:: 2023-08-14] [scheduled:: 2023-08-14] [due:: 2023-08-14] [completion:: 2023-08-15]
|
|
|
|
|
|
Identify the version number of the installed package
|
|
```shell
|
|
sudo apt-cache madison gitlab-Ce
|
|
```
|
|
|
|
Link to documentation: https://docs.gitlab.com/ee/update/package/index.html#upgrade-using-the-official-repositories
|
|
|
|
Update Gitlab to certain version
|
|
```shell
|
|
sudo apt install gitlab-ce=15.11.13-ce.0
|
|
```
|
|
|
|
Update Gitlab to latest Version
|
|
```shell
|
|
sudo apt upgrade -y
|
|
```
|