Update GitHub Actions workflows to latest versions

This commit is contained in:
Philipp Trulson 2023-09-28 09:55:57 +02:00
parent b4dc19b4ba
commit 0bec274684
No known key found for this signature in database
GPG key ID: 7D15DA14D2E1182A
9 changed files with 31 additions and 31 deletions

View file

@ -12,7 +12,7 @@ on:
jobs:
build-containerfile:
name: Build image with Containerfile
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
@ -25,7 +25,7 @@ jobs:
# Checkout buildah action github repository
- name: Checkout Buildah action
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Docker Metadata
id: docker-metadata
@ -88,7 +88,7 @@ jobs:
build-scratch:
name: Build image without Containerfile
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
@ -103,7 +103,7 @@ jobs:
# Checkout buildah action github repository
- name: Checkout Buildah action
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Docker Metadata
id: docker-metadata
@ -128,7 +128,7 @@ jobs:
# Checkout spring-petclinic github repository
- name: Checkout spring-petclinic project
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: "spring-projects/spring-petclinic"
path: ${{ env.PROJECT_DIR }}