Skip to content

Commit

Permalink
build: upgrade actions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
psanders committed Mar 11, 2024
1 parent eb3533c commit ca44bb3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
add-contributors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: BobAnkh/add-contributors@master
with:
CONTRIBUTOR: "<!--contributors:start-->"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v4
- name: Installing Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18.x"
node-version: "20.x"
- name: Populate out directory
run: |
# Create out directory
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,8 @@ on: [workflow_dispatch]
jobs:
build-test-release:
name: Build, test, and release

timeout-minutes: 10

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -18,9 +15,9 @@ jobs:
token: ${{ secrets.GH_PAT }}

- name: Install latest Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18.x"
node-version: "20.x"

- name: Build project
run: npm install && npm run build
Expand Down Expand Up @@ -75,7 +72,7 @@ jobs:
draft: true

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Publish API server to Docker Hub
uses: elgohr/Publish-Docker-Github-Action@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag-npm-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18.x"
node-version: "20.x"
- name: Checkout repository
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit ca44bb3

Please sign in to comment.