Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated dependencies #patch #6

Merged
merged 2 commits into from
Jan 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
fetch-depth: '0'

- name: Bump version and push tag
uses: anothrNick/github-tag-action@1.36.0
uses: anothrNick/github-tag-action@1.40.0
id: tag-version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: minor
RELEASE_BRANCHES: master

- name: Docker Login
uses: docker/login-action@v1.14.1
uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM ubuntu:20.04 as build
FROM ubuntu:22.04 as build
LABEL maintainer="Jan-Hendrik Hausner <to.jan-hendrik.hausner@outlook.com>"
ARG ACTIVE_MQ_VERSION=5.16.3
ARG ACTIVE_MQ_VERSION=5.17.3
RUN apt update && \
apt install -y wget && \
wget https://archive.apache.org/dist/activemq/$ACTIVE_MQ_VERSION/apache-activemq-$ACTIVE_MQ_VERSION-bin.tar.gz && \
tar -xvzf apache-activemq-$ACTIVE_MQ_VERSION-bin.tar.gz && \
mv apache-activemq-$ACTIVE_MQ_VERSION /opt/apache-activemq-$ACTIVE_MQ_VERSION
COPY activemq.xml /opt/apache-activemq-$ACTIVE_MQ_VERSION/conf

FROM openjdk:11.0.14
ENV ACTIVE_MQ_VERSION=5.16.3
FROM openjdk:11.0.16
ENV ACTIVE_MQ_VERSION=5.17.3
ENV ACTIVE_MQ_USERNAME=test
ENV ACTIVE_MQ_PASSWORD=test
WORKDIR /opt/apache-activemq-$ACTIVE_MQ_VERSION
Expand Down