diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 182b0aa22..62f6df4bc 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -32,7 +32,7 @@ jobs: version_pr=$(printf "%05d" ${{ github.event.pull_request.number }}) echo "Development build for PR #${{ github.event.pull_request.number }}" echo "::set-output name=version_pr::${version_pr}" - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Get Major/Minor version id: version_main run: | @@ -78,7 +78,7 @@ jobs: return { "ref": context.payload.pull_request.head.sha } - name: Checkout source - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: true persist-credentials: false diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 47c39b33f..b62b46d79 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 18a50b113..f7a9f752c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: version_dev: ${{ steps.version_check.outputs.version_dev }} matrix: ${{ steps.generate_matrix.outputs.result }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Validate version id: version_check run: | @@ -52,7 +52,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true