Skip to content

Commit 2a41258

Browse files
committed
upgrade to gitea 1.16.8
1 parent bf0f99a commit 2a41258

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-20.04
66
services:
77
gitea:
8-
image: gitea/gitea:1.15.0
8+
image: gitea/gitea:1.16.8
99
options: --name gitea
1010
volumes:
1111
- /etc/timezone:/etc/timezone:ro
@@ -27,7 +27,7 @@ jobs:
2727
- name: Test
2828
run: |
2929
# create user in gitea.
30-
docker exec gitea gitea admin user create \
30+
docker exec --user git gitea gitea admin user create \
3131
--admin \
3232
--email jane.doe@example.com \
3333
--username jane.doe \

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,18 @@ Start a temporary git server to host our test remote repository:
1111
```bash
1212
# start gitea in background.
1313
# see https://docs.gitea.io/en-us/config-cheat-sheet/
14-
# see https://github.com/go-gitea/gitea/blob/v1.15.0/docker/root/etc/s6/gitea/setup
14+
# see https://github.com/go-gitea/gitea/releases
15+
# see https://github.com/go-gitea/gitea/blob/v1.16.8/docker/root/etc/s6/gitea/setup
1516
docker run \
1617
--detach \
1718
--name gitea \
1819
-v /etc/timezone:/etc/timezone:ro \
1920
-v /etc/localtime:/etc/localtime:ro \
2021
-e SECRET_KEY=abracadabra \
2122
-p 3000:3000 \
22-
gitea/gitea:1.15.0
23+
gitea/gitea:1.16.8
2324
# create user in gitea.
24-
docker exec gitea gitea admin user create \
25+
docker exec --user git gitea gitea admin user create \
2526
--admin \
2627
--email jane.doe@example.com \
2728
--username jane.doe \

0 commit comments

Comments
 (0)