diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 24b9c54..e13499d 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -5,4 +5,4 @@ # the repo. Unless a later match takes precedence, # These owners will be requested for # review when someone opens a pull request. -* @kyle1morel @TimCsaky @wilwong89 @jatindersingh93 @norrisng-bc +* @TimCsaky @jatindersingh93 @norrisng-bc diff --git a/.github/actions/build-push-container/action.yaml b/.github/actions/build-push-container/action.yaml index a753a21..a214bb4 100644 --- a/.github/actions/build-push-container/action.yaml +++ b/.github/actions/build-push-container/action.yaml @@ -74,7 +74,7 @@ runs: - name: Build and Push to Container Registry id: builder - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: ${{ inputs.context }} push: true diff --git a/Dockerfile b/Dockerfile index e7e5618..1028aea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # We want to stick with the lts-alpine tag, but need to ensure we explicitly track base images # FROM docker.io/node:lts-alpine -FROM docker.io/node:20.11.1-alpine +FROM docker.io/node:20.15.1-alpine ARG APP_ROOT=/opt/app-root/src ENV NO_UPDATE_NOTIFIER=true \