From 8538e6118b7ec47ed9d16d24e7991540735ed964 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 7 Mar 2022 17:26:17 +0000 Subject: [PATCH] Update actions/checkout action to v3 --- .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 5ef397a..f07d1fb 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@v2 + - uses: actions/checkout@v3 - name: Cache SDKMAN installation uses: actions/cache@v2 @@ -43,7 +43,7 @@ jobs: native-image-compile-in-docker: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - 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