Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and cmuench committed Oct 24, 2024
1 parent 16678bc commit 1d2594f
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 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/[email protected].1
uses: actions/[email protected].2

- 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/[email protected].1
uses: actions/[email protected].2
- uses: webfactory/[email protected]
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/[email protected].1
uses: actions/[email protected].2
- 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/[email protected].1
uses: actions/[email protected].2
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 @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout develop branch
uses: actions/[email protected].1
uses: actions/[email protected].2
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/[email protected].1
uses: actions/[email protected].2
if: github.event_name == 'pull_request_target'
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Checkout HEAD
uses: actions/[email protected].1
uses: actions/[email protected].2
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/[email protected].1
uses: actions/[email protected].2
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Checkout HEAD
uses: actions/[email protected].1
uses: actions/[email protected].2
if: github.event_name == 'push'

- name: Check Security
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/php-code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/[email protected].1
uses: actions/[email protected].2
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout HEAD
uses: actions/[email protected].1
uses: actions/[email protected].2
if: github.event_name == 'push'
- name: Setup PHP
uses: shivammathur/setup-php@v2
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/[email protected].1
uses: actions/[email protected].2
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout HEAD
uses: actions/[email protected].1
uses: actions/[email protected].2
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/[email protected].1
- uses: actions/[email protected].2
with:
# We need to get all branches and tags for git describe to work properly
fetch-depth: 0
Expand Down

0 comments on commit 1d2594f

Please sign in to comment.