@@ -3,9 +3,9 @@ name: release-tag-version
33on :
44 push :
55 tags :
6- - ' v1.*'
7- - ' !v1*-rc*'
8- - ' !v1*-dev'
6+ - " v1.*"
7+ - " !v1*-rc*"
8+ - " !v1*-dev"
99
1010concurrency :
1111 group : ${{ github.workflow }}-${{ github.ref }}
2323 with :
2424 go-version-file : go.mod
2525 check-latest : true
26- - uses : actions/setup-node@v3
26+ - uses : actions/setup-node@v4
2727 with :
2828 node-version : 20
2929 - run : make deps-frontend deps-backend
3333 TAGS : bindata sqlite sqlite_unlock_notify
3434 - name : import gpg key
3535 id : import_gpg
36- uses : crazy-max/ghaction-import-gpg@v5
36+ uses : crazy-max/ghaction-import-gpg@v6
3737 with :
3838 gpg_private_key : ${{ secrets.GPGSIGN_KEY }}
3939 passphrase : ${{ secrets.GPGSIGN_PASSPHRASE }}
7070 # fetch all commits instead of only the last as some branches are long lived and could have many between versions
7171 # fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567
7272 - run : git fetch --unshallow --quiet --tags --force
73- - uses : docker/setup-qemu-action@v2
74- - uses : docker/setup-buildx-action@v2
73+ - uses : docker/setup-qemu-action@v3
74+ - uses : docker/setup-buildx-action@v3
7575 - uses : docker/metadata-action@v5
7676 id : meta
7777 with :
@@ -87,12 +87,12 @@ jobs:
8787 type=semver,pattern={{major}}.{{minor}}
8888 type=semver,pattern={{version}}
8989 - name : Login to Docker Hub
90- uses : docker/login-action@v2
90+ uses : docker/login-action@v3
9191 with :
9292 username : ${{ secrets.DOCKERHUB_USERNAME }}
9393 password : ${{ secrets.DOCKERHUB_TOKEN }}
9494 - name : build rootful docker image
95- uses : docker/build-push-action@v4
95+ uses : docker/build-push-action@v5
9696 with :
9797 context : .
9898 platforms : linux/amd64,linux/arm64
@@ -106,8 +106,8 @@ jobs:
106106 # fetch all commits instead of only the last as some branches are long lived and could have many between versions
107107 # fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567
108108 - run : git fetch --unshallow --quiet --tags --force
109- - uses : docker/setup-qemu-action@v2
110- - uses : docker/setup-buildx-action@v2
109+ - uses : docker/setup-qemu-action@v3
110+ - uses : docker/setup-buildx-action@v3
111111 - uses : docker/metadata-action@v5
112112 id : meta
113113 with :
@@ -126,12 +126,12 @@ jobs:
126126 type=semver,pattern={{major}}.{{minor}}
127127 type=semver,pattern={{version}}
128128 - name : Login to Docker Hub
129- uses : docker/login-action@v2
129+ uses : docker/login-action@v3
130130 with :
131131 username : ${{ secrets.DOCKERHUB_USERNAME }}
132132 password : ${{ secrets.DOCKERHUB_TOKEN }}
133133 - name : build rootless docker image
134- uses : docker/build-push-action@v4
134+ uses : docker/build-push-action@v5
135135 with :
136136 context : .
137137 platforms : linux/amd64,linux/arm64
0 commit comments