Skip to content

Commit

Permalink
update GHA versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Galarzaa90 committed May 25, 2024
1 parent 83cd6a0 commit 7274af5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Docker Build
name: 🐋 Docker Build

on:
push:
Expand All @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Cache Docker Layers 📦
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand All @@ -25,7 +25,7 @@ jobs:

- name: Docker Meta 📋
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}
Expand All @@ -39,25 +39,25 @@ jobs:
flavor: |
latest=auto
- name: Login to Docker Hub 🐳
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Login to GHCR 🐙
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx 🐋
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Build and Push 🚀
id: docker_build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: ./
file: ./Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Build and Test
name: ⚙️ Build and Test

on:
push:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: GitHub Pages
name: 🐙 GitHub Pages

on:
push:
Expand All @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up JDK 13 ☕
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 13
distribution: 'adopt'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish to Sonatype Nexus
name: 🚀 Publish to Sonatype Nexus
on:
push:
branches:
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Checkout 📦
uses: actions/checkout@v4
- name: Set up JDK ️☕
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '13'
distribution: 'adopt'
Expand Down

0 comments on commit 7274af5

Please sign in to comment.