Skip to content

Commit

Permalink
Merge pull request #40 from kangketikonlen/dependabot/github_actions/…
Browse files Browse the repository at this point in the history
…stable/actions/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
kangketikonlen authored Nov 23, 2023
2 parents fe98402 + 9be3e22 commit b270e3b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
latest_version: ${{steps.push-image.outputs.version}}
steps:
- name: 🐙 Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 📁 Make sure repository is latest
run: git fetch --prune --unshallow
- name: 🐳 Build image
Expand All @@ -41,7 +41,7 @@ jobs:
environment: production
steps:
- name: 🐙 Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 📁 Make sure repository is latest
run: git fetch --prune --unshallow
- name: ▶️ Running shell script
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🐙 Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 📁 Make sure repository is latest
run: git fetch --prune --unshallow
- name: 🔖 Create tag
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🐙 Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 📁 Make sure repository is latest
run: git fetch --prune --unshallow
- name: 🛠️ Install dependencies
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🐙 Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 📦 Download vendor folder
uses: actions/download-artifact@v3
with:
Expand All @@ -53,7 +53,7 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: 🐙 Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 📦 Download vendor folder
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
needs: [setup, phpstan, phpunit]
steps:
- name: 🐙 Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 📦 Delete vendor artifact
uses: geekyeggo/delete-artifact@v2
with:
Expand All @@ -93,7 +93,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🐙 Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 📁 Make sure repository is latest
run: git fetch --prune --unshallow
- name: 🔖 Create tag
Expand All @@ -111,7 +111,7 @@ jobs:
environment: testing
steps:
- name: 📥 Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 🚀 Install jq
run: sudo apt-get update && sudo apt-get install -y jq
- name: 🚀 Create PR
Expand Down

0 comments on commit b270e3b

Please sign in to comment.