Bump lombok ver

This commit is contained in:
Braydon 2023-12-02 03:59:06 -05:00
parent b6f43a6510
commit df004e59e2
2 changed files with 6 additions and 3 deletions

@ -1,4 +1,4 @@
name: Publish Image name: Publish
on: on:
push: push:
@ -10,16 +10,18 @@ jobs:
matrix: matrix:
arch: [ "ubuntu-latest" ] arch: [ "ubuntu-latest" ]
git-version: [ "2.38.4" ] git-version: [ "2.38.4" ]
runs-on: ${{ matrix.arch }} runs-on: ${{ matrix.arch }}
container: fascinated/docker-images:nodejs_20 container: fascinated/docker-images:nodejs_20
steps: steps:
# Checkout the branch
- name: Checkout - name: Checkout
uses: https://github.com/actions/checkout@v3 uses: https://github.com/actions/checkout@v3
# Setup Docker BuildX
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v2 uses: https://github.com/docker/setup-buildx-action@v2
# Login to Docker
- name: Login to Repo - name: Login to Repo
uses: https://github.com/docker/login-action@v2 uses: https://github.com/docker/login-action@v2
with: with:
@ -27,6 +29,7 @@ jobs:
username: ${{ secrets.REPO_USERNAME }} username: ${{ secrets.REPO_USERNAME }}
password: ${{ secrets.REPO_TOKEN }} password: ${{ secrets.REPO_TOKEN }}
# Build & Push to Docker
- name: Build and Push - name: Build and Push
uses: docker/build-push-action@v4 uses: docker/build-push-action@v4
with: with:

@ -52,7 +52,7 @@
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>
<version>1.18.28</version> <version>1.18.30</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>