Skip to content

Commit a05c678

Browse files
dependabot[bot]cmuench
authored andcommitted
Bump actions/checkout from 4.1.2 to 4.1.3
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.2 to 4.1.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.2...v4.1.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent fe2a7c0 commit a05c678

7 files changed

+12
-12
lines changed

.github/workflows/deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout HEAD
29-
uses: actions/[email protected].2
29+
uses: actions/[email protected].3
3030

3131
- name: Setup PHP
3232
uses: shivammathur/setup-php@v2
@@ -143,7 +143,7 @@ jobs:
143143
needs: [ "create-signed-phar-file" ]
144144
steps:
145145
- name: Checkout HEAD
146-
uses: actions/[email protected].2
146+
uses: actions/[email protected].3
147147
- uses: webfactory/[email protected]
148148
with:
149149
ssh-private-key: ${{ secrets.DIST_REPO_DEPLOY_KEY }}
@@ -163,7 +163,7 @@ jobs:
163163
if: startsWith(github.ref, 'refs/tags/')
164164
steps:
165165
- name: Checkout HEAD
166-
uses: actions/[email protected].2
166+
uses: actions/[email protected].3
167167
- name: Download artifacts
168168
uses: actions/download-artifact@v4
169169
with:

.github/workflows/linter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# Checkout the code base #
2727
##########################
2828
- name: Checkout Code
29-
uses: actions/[email protected].2
29+
uses: actions/[email protected].3
3030
with:
3131
# Full git history is needed to get a proper list of changed files within `super-linter`
3232
fetch-depth: 0

.github/workflows/mage-os_nightly_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout develop branch
32-
uses: actions/[email protected].2
32+
uses: actions/[email protected].3
3333
with:
3434
ref: develop
3535

.github/workflows/magento_platform_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,13 @@ jobs:
207207
coverage: none
208208

209209
- name: Checkout PR
210-
uses: actions/[email protected].2
210+
uses: actions/[email protected].3
211211
if: github.event_name == 'pull_request_target'
212212
with:
213213
ref: ${{ github.event.pull_request.head.sha }}
214214

215215
- name: Checkout HEAD
216-
uses: actions/[email protected].2
216+
uses: actions/[email protected].3
217217
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
218218

219219
- name: Linux Setup

.github/workflows/phar_build_and_update.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ jobs:
3636
php-version: '7.4'
3737

3838
- name: Checkout PR
39-
uses: actions/[email protected].2
39+
uses: actions/[email protected].3
4040
if: github.event_name == 'pull_request'
4141
with:
4242
ref: ${{ github.event.pull_request.head.sha }}
4343

4444
- name: Checkout HEAD
45-
uses: actions/[email protected].2
45+
uses: actions/[email protected].3
4646
if: github.event_name == 'push'
4747

4848
- name: Check Security

.github/workflows/php_compatibility.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout PR
20-
uses: actions/[email protected].2
20+
uses: actions/[email protected].3
2121
if: github.event_name == 'pull_request'
2222
with:
2323
ref: ${{ github.event.pull_request.head.sha }}
2424
- name: Checkout HEAD
25-
uses: actions/[email protected].2
25+
uses: actions/[email protected].3
2626
if: github.event_name == 'push'
2727
- name: Setup PHP
2828
uses: shivammathur/setup-php@v2

.github/workflows/pr_build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-20.04
2424

2525
steps:
26-
- uses: actions/[email protected].2
26+
- uses: actions/[email protected].3
2727
with:
2828
# We need to get all branches and tags for git describe to work properly
2929
fetch-depth: 0

0 commit comments

Comments
 (0)