Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Update actions/checkout action to v4 #369

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
16 changes: 8 additions & 8 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
if: github.ref == 'refs/heads/develop' # Running this job only for develop branch

steps:
- uses: actions/checkout@v2 # Checking out the repo
- uses: actions/checkout@v4 # Checking out the repo
- uses: dorny/paths-filter@v2
id: changes
with:
Expand All @@ -33,7 +33,7 @@ jobs:
if: github.ref == 'refs/heads/develop' # Running this job only for develop branch

steps:
- uses: actions/checkout@v2 # Checking out the repo
- uses: actions/checkout@v4 # Checking out the repo
- uses: dorny/paths-filter@v2
id: changes
with:
Expand All @@ -57,7 +57,7 @@ jobs:
if: github.ref == 'refs/heads/develop' # Running this job only for develop branch

steps:
- uses: actions/checkout@v2 # Checking out the repo
- uses: actions/checkout@v4 # Checking out the repo
- uses: dorny/paths-filter@v2
id: changes
with:
Expand All @@ -81,7 +81,7 @@ jobs:
if: github.ref == 'refs/heads/develop' # Running this job only for develop branch

steps:
- uses: actions/checkout@v2 # Checking out the repo
- uses: actions/checkout@v4 # Checking out the repo
- uses: dorny/paths-filter@v2
id: changes
with:
Expand All @@ -107,7 +107,7 @@ jobs:
- build-docker-php-composer-head
if: ${{ (needs.build-docker-php-head.result == 'success' || needs.build-docker-php-head.result == 'skipped') && (needs.build-docker-php-composer-head.result == 'success' || needs.build-docker-php-composer-head.result == 'skipped') && !cancelled() }}
steps:
- uses: actions/checkout@v2 # Checking out the repo
- uses: actions/checkout@v4 # Checking out the repo
- uses: dorny/paths-filter@v2
id: changes
with:
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
registry: docker.pkg.github.com
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Generate new docker-compose.test.yml
run: |
sed -i 's%###_PHP_COMPOSER_IMAGE_###%docker.pkg.github.com/${{ env.REPO_NAME }}/php-composer:${{ env.IMAGE_TAG }}%g' docker-compose.test.yml
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
if: github.ref == 'refs/heads/master'
needs: cypress
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
id: changes
with:
Expand All @@ -235,7 +235,7 @@ jobs:
if: github.ref == 'refs/heads/master'
needs: cypress
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set vars
run: |
echo "REPO_NAME=${{ github.repository }}" >> $GITHUB_ENV
Expand Down
Loading