diff --git a/Dockerfile b/Dockerfile index 17a2ceb..799c108 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,8 +24,11 @@ COPY package*.json ./ # Install dependencies RUN apt-get update RUN apt-get -y install git +RUN git config user.name "Bump Version" +RUN git config user.email "gh-action-bump-version@users.noreply.github.com" RUN npm ci + # Copy the rest of your action's code COPY . .