Skip to content

Commit

Permalink
Update GHA (#25)
Browse files Browse the repository at this point in the history
* Update GH Actions to newest versions

* Change node to v20

* Revert "Change node to v20"

This reverts commit 8c4619a.
  • Loading branch information
s-egge committed Jul 9, 2024
1 parent 88452db commit 967c0b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set-up Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 18
- name: yarn install
Expand All @@ -24,7 +24,7 @@ jobs:
run: |
yarn build
- name: deploy frontend to gh pages
uses: crazy-max/ghaction-github-pages@v3 # https://github.com/crazy-max/ghaction-github-pages
uses: crazy-max/ghaction-github-pages@v4 # https://github.com/crazy-max/ghaction-github-pages
with:
target_branch: gh-pages
build_dir: website/build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-build-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set-up Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 18
- name: AWS Creds
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down

0 comments on commit 967c0b8

Please sign in to comment.