Skip to content

Commit 5fef6b3

Browse files
committed
bump actions versions
1 parent a3ac2a2 commit 5fef6b3

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/master-latest.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ FROM node:16-alpine AS final
2121
WORKDIR /app
2222
COPY --from=build /app /app
2323
ENV HTTP_PORT=8080 HTTPS_PORT=8443
24-
ENV JWT_HEADER=Authentication
24+
ENV JWT_HEADER=authorization
2525
EXPOSE $HTTP_PORT $HTTPS_PORT
2626
USER 1000
2727
CMD ["node", "./index.js"]

0 commit comments

Comments
 (0)