diff --git a/.github/workflows/lint-files.yml b/.github/workflows/lint-files.yml index 9ddb277..9d6deb4 100644 --- a/.github/workflows/lint-files.yml +++ b/.github/workflows/lint-files.yml @@ -55,7 +55,7 @@ jobs: # https://github.com/actions/checkout - name: Checkout repository (no ref input) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ inputs.ref == '' }} with: # Full git history is needed to get a proper @@ -64,7 +64,7 @@ jobs: - name: Checkout repository (with ref input) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ inputs.ref != '' }} with: ref: '${{ inputs.ref }}' diff --git a/.github/workflows/scan-code.yml b/.github/workflows/scan-code.yml index 74221f1..eeee48c 100644 --- a/.github/workflows/scan-code.yml +++ b/.github/workflows/scan-code.yml @@ -63,7 +63,7 @@ jobs: # https://github.com/actions/checkout - name: Checkout repository (no ref input) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ inputs.ref == '' }} with: # Only a single commit is fetched by default, for the ref/SHA that @@ -73,7 +73,7 @@ jobs: - name: Checkout repository (with ref input) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ inputs.ref != '' }} with: ref: '${{ inputs.ref }}'