Skip to content

Commit

Permalink
HDDS-10203. Update Github actions to v4 since Node.js 16 actions are …
Browse files Browse the repository at this point in the history
…deprecated. (#60)
  • Loading branch information
errose28 authored Jan 24, 2024
1 parent 16d07d5 commit e7f7990
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
steps:
# Check out the website source in the current working directory.
- name: "Checkout source branch ${{ github.ref_name }}"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: 'src'
- name: "Build website"
Expand All @@ -38,7 +38,7 @@ jobs:
run: |
docker compose run site pnpm run build
- name: "Checkout publish branch"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: 'publish'
# TODO update this to asf-site when the website is ready to be published.
Expand All @@ -59,4 +59,4 @@ jobs:
git commit -a -m "[auto] Apply changes from $GITHUB_REF_NAME $GITHUB_SHA" || true
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e7f7990

Please sign in to comment.