File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,23 +12,23 @@ jobs:
1212 steps :
1313
1414 - name : Checkout
15- uses : actions/checkout@v2
15+ uses : actions/checkout@v3
1616
1717 - name : Set up QEMU
18- uses : docker/setup-qemu-action@v1
18+ uses : docker/setup-qemu-action@v2
1919
2020 - name : Set up Docker Buildx
2121 id : buildx
22- uses : docker/setup-buildx-action@v1
22+ uses : docker/setup-buildx-action@v2
2323
2424 - name : Log in to Docker Hub
25- uses : docker/login-action@v1
25+ uses : docker/login-action@v2
2626 with :
2727 username : ${{ secrets.DOCKER_USERNAME }}
2828 password : ${{ secrets.DOCKER_PASSWORD }}
2929
3030 - name : Docker Login to GitHub Container Registry
31- uses : docker/login-action@v1
31+ uses : docker/login-action@v2
3232 with :
3333 registry : ghcr.io
3434 username : ${{ github.repository_owner }} # github username or org
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ FROM node:16-alpine AS final
2121WORKDIR /app
2222COPY --from=build /app /app
2323ENV HTTP_PORT=8080 HTTPS_PORT=8443
24- ENV JWT_HEADER=Authentication
24+ ENV JWT_HEADER=authorization
2525EXPOSE $HTTP_PORT $HTTPS_PORT
2626USER 1000
2727CMD ["node" , "./index.js" ]
You can’t perform that action at this time.
0 commit comments