Skip to content

Commit

Permalink
workflows: update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wei2912 committed Nov 5, 2024
1 parent 9d0300d commit fffddae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/cache@v4
name: Cache Stack
with:
path: ~/.stack/
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
$HOME/.local/bin/stack exec blog build
- name: Upload build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: blog-${{ github.sha }}
path: _site/
Expand All @@ -48,9 +48,9 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Download build
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: blog-${{ github.sha }}
path: _site/
Expand Down

0 comments on commit fffddae

Please sign in to comment.