From 0bf55cbc66dcba40b804c3f200ec2aceb557a1d5 Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Thu, 22 Jun 2023 20:39:28 +0300 Subject: [PATCH] Use latest checkout action May fix this problem https://github.com/Netflix/photon/actions/runs/5345476364/jobs/9698303247 because checkout@v1 is a few years old. https://github.com/actions/checkout/blob/main/CHANGELOG.md --- .github/workflows/nebula-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nebula-ci.yml b/.github/workflows/nebula-ci.yml index 314ca6f5..4fac8cd2 100644 --- a/.github/workflows/nebula-ci.yml +++ b/.github/workflows/nebula-ci.yml @@ -16,7 +16,7 @@ jobs: java: [ 8 ] name: CI with Java ${{ matrix.java }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Setup jdk uses: actions/setup-java@v1 with: