Skip to content

Commit

Permalink
chore: update actions versions (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
vordimous authored Sep 26, 2024
1 parent ef0f292 commit 5b55a06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Restore cached Docs
id: dist-cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ env.DistDir }}
key: ${{ env.DistDir }}-${{ hashFiles('deploy-versions.json') }}
Expand Down Expand Up @@ -100,21 +100,21 @@ jobs:
- if: ${{ steps.dist-cache.outputs.cache-hit != 'true' }}
name: Save Docs
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ env.DistDir }}
key: ${{ env.DistDir }}-${{ hashFiles('deploy-versions.json') }}

- name: Upload cloudflare-pages artifact
if: github.repository_owner == 'aklivity'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cloudflare-pages
path: ${{ env.DistDir }}

- name: Upload github-pages artifact
if: github.repository_owner != 'aklivity'
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: ${{ env.DistDir }}/zilla-docs

Expand Down Expand Up @@ -165,4 +165,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: github-deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion .github/workflows/schema-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
continue-on-error: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4
Expand Down

0 comments on commit 5b55a06

Please sign in to comment.