[ci] bump actions/checkout version

This commit is contained in:
Shish 2024-02-12 13:51:11 +00:00
parent bd2ca06659
commit f031af44ba
4 changed files with 8 additions and 8 deletions

View file

@ -12,7 +12,7 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }} if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- name: Set Git config - name: Set Git config
run: | run: |
git config --local user.email "actions@github.com" git config --local user.email "actions@github.com"

View file

@ -20,12 +20,12 @@ jobs:
steps: steps:
- name: Checkout triggering commit - name: Checkout triggering commit
if: ${{ github.event_name == 'workflow_run' }} if: ${{ github.event_name == 'workflow_run' }}
uses: actions/checkout@master uses: actions/checkout@v4
with: with:
ref: ${{ github.event.workflow_run.head_sha }} ref: ${{ github.event.workflow_run.head_sha }}
- name: Checkout main commit - name: Checkout main commit
if: ${{ github.event_name != 'workflow_run' }} if: ${{ github.event_name != 'workflow_run' }}
uses: actions/checkout@master uses: actions/checkout@v4
- name: Set build vars - name: Set build vars
run: | run: |
echo "BUILD_TIME=$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_ENV echo "BUILD_TIME=$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_ENV

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@master uses: actions/checkout@v4
- name: Get version from tag - name: Get version from tag
id: get_version id: get_version

View file

@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Set Up Cache - name: Set Up Cache
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 2 fetch-depth: 2
- name: Set Up Cache - name: Set Up Cache
@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout current - name: Checkout current
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Travel to past - name: Travel to past
@ -115,7 +115,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 2 fetch-depth: 2
- name: Set Up Cache - name: Set Up Cache