Skip to content

Commit

Permalink
Bump actions/checkout from 4.1.3 to 4.1.4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.3 to 4.1.4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.1.3...v4.1.4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and cmuench committed Apr 27, 2024
1 parent 94ac790 commit 3e9fef0
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout HEAD
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
needs: [ "create-signed-phar-file" ]
steps:
- name: Checkout HEAD
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4
- uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.DIST_REPO_DEPLOY_KEY }}
Expand All @@ -163,7 +163,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout HEAD
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mage-os_nightly_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout develop branch
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4
with:
ref: develop

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/magento_platform_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,13 +207,13 @@ jobs:
coverage: none

- name: Checkout PR
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4
if: github.event_name == 'pull_request_target'
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Checkout HEAD
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'

- name: Linux Setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phar_build_and_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:
php-version: '7.4'

- name: Checkout PR
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Checkout HEAD
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4
if: github.event_name == 'push'

- name: Check Security
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/php_compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout HEAD
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4
if: github.event_name == 'push'
- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v4.1.3
- uses: actions/checkout@v4.1.4
with:
# We need to get all branches and tags for git describe to work properly
fetch-depth: 0
Expand Down

0 comments on commit 3e9fef0

Please sign in to comment.