Skip to content

Commit

Permalink
Update checkout, download-artifact and upload-artifact Actions versio…
Browse files Browse the repository at this point in the history
…n to use Node.js 2
  • Loading branch information
ctmbl committed May 21, 2024
1 parent eadb7b1 commit 5bc4061
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# Checkout repo AND ITS SUBMODULES
- name: 🛒 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -38,7 +38,7 @@ jobs:
# Upload build artifacts for deployment or download
- name: 🚀 Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: prod-build
path: ./build/blog/prod
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
run: |
mkdir -p build/blog/prod
- name: 📥 Download build Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: prod-build
path: build/blog/prod
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
steps:
# Checkout repo, no need to checkout submodule
- name: 🛒 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Get the list of added, changed, removed, and renamed files
- name: 📑 Get changed files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# Checkout repo AND ITS SUBMODULES
- name: 🛒 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
# Checkout repo
- name: 🛒 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Install pytest
- name: 🛠️ Install pytest
Expand Down

0 comments on commit 5bc4061

Please sign in to comment.