Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Bump actions/checkout from 4.1.7 to 4.2.0 #1524

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.7
uses: actions/checkout@v4.2.0

- 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.7
uses: actions/checkout@v4.2.0
- 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.7
uses: actions/checkout@v4.2.0
- 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.7
uses: actions/checkout@v4.2.0
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/checkout@v4.1.7
uses: actions/checkout@v4.2.0
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.7
uses: actions/checkout@v4.2.0
if: github.event_name == 'pull_request_target'
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Checkout HEAD
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
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.7
uses: actions/checkout@v4.2.0
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Checkout HEAD
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
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/checkout@v4.1.7
uses: actions/checkout@v4.2.0
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout HEAD
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
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/checkout@v4.1.7
uses: actions/checkout@v4.2.0
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout HEAD
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
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.7
- uses: actions/checkout@v4.2.0
with:
# We need to get all branches and tags for git describe to work properly
fetch-depth: 0
Expand Down