From 3889a88d77fa3485ef53834e269144b5e1dde37b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 13:05:36 +0000 Subject: [PATCH] Update actions/checkout action to v4 --- .github/workflows/native-image-compile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/native-image-compile.yml b/.github/workflows/native-image-compile.yml index 31b5388..b4a7525 100644 --- a/.github/workflows/native-image-compile.yml +++ b/.github/workflows/native-image-compile.yml @@ -6,7 +6,7 @@ jobs: native-image-compile-on-host: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache SDKMAN installation uses: actions/cache@v3 @@ -43,7 +43,7 @@ jobs: native-image-compile-in-docker: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Login into Heroku Container Registry first, so that we can push our Image later run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin registry.heroku.com