Skip to content

Commit 305a503

Browse files
committed
chore: ⬆️ Update GitHub Actions to latest versions in workflows
1 parent 69e4c69 commit 305a503

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-22.04
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4.2.2
2929
- name: Install, build, and upload artifact
30-
uses: withastro/action@v0
30+
uses: withastro/action@v3.0.2
3131

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ jobs:
2727
url: ${{ steps.deployment.outputs.page_url }}
2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333
persist-credentials: false
3434
- name: Download artifact
35-
uses: dawidd6/action-download-artifact@v2
35+
uses: dawidd6/action-download-artifact@v8
3636
with:
3737
workflow: build.yml
3838
github_token: ${{ secrets.PAT }}
3939
name: github-pages
4040
path: artifact
4141
- name: Semantic Release
4242
id: semantic
43-
uses: cycjimmy/semantic-release-action@v3
43+
uses: cycjimmy/semantic-release-action@v4.1.1
4444
with:
4545
extra_plugins: |
4646
@semantic-release/changelog
@@ -52,11 +52,11 @@ jobs:
5252
GIT_COMMITTER_NAME: 'GitHub Actions'
5353
GIT_COMMITTER_EMAIL: '[email protected]'
5454
- name: Upload artifact
55-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4.6.1
5656
with:
5757
name: github-pages
5858
path: artifact
5959
- name: Deploy to GitHub Pages
6060
if: ${{ steps.semantic.outputs.new_release_published }} == 'true' || ${{ github.event.inputs.force }} == 'true'
6161
id: deployment
62-
uses: actions/deploy-pages@v2
62+
uses: actions/deploy-pages@v4.0.5

0 commit comments

Comments
 (0)