Skip to content

Commit 48eefaf

Browse files
build: update actions/checkout action to v4 (#1515)
Co-authored-by: Renovate Bot <[email protected]>
1 parent a936985 commit 48eefaf

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/actions/git/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ outputs:
4343
runs:
4444
using: composite
4545
steps:
46-
- uses: actions/checkout@v3
46+
- uses: actions/checkout@v4
4747
if: ${{ github.event.pull_request.head.repo.full_name == github.repository || github.ref == 'refs/heads/master' }}
4848
with:
4949
ref: ${{ github.head_ref }}
@@ -59,7 +59,7 @@ runs:
5959
git config --global user.name "${{ inputs.username }}"
6060
git config --global user.email "${{ inputs.email }}"
6161
62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v4
6363
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
6464
with:
6565
ref: ${{ github.event.pull_request.base.sha }}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
steps:
1212
- name: Scan repo for find local actions
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: Setup Node.js and Cache
1616
uses: ./.github/actions/nodejs

.github/workflows/integrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
steps:
1212
- name: Scan repo for find local actions
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: Setup Node.js and Cache
1616
uses: ./.github/actions/nodejs

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-22.04
77
steps:
88
- name: Scan repo for find local actions
9-
uses: actions/checkout@v3
9+
uses: actions/checkout@v4
1010

1111
- name: Setup Git
1212
id: git-setup

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
release:
99
runs-on: ubuntu-22.04
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
with:
1313
fetch-depth: '0'
1414
persist-credentials: false

.github/workflows/renovate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v3.5.3
12+
uses: actions/checkout@v4.1.1
1313
- name: Self-hosted Renovate
1414
uses: renovatebot/[email protected]
1515
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
steps:
1212
- name: Scan repo for find local actions
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: Setup Node.js and Cache
1616
uses: ./.github/actions/nodejs

0 commit comments

Comments
 (0)