Skip to content

Commit

Permalink
Merge pull request #33 from bruceharrison1984/fix-all-builds
Browse files Browse the repository at this point in the history
update actions
  • Loading branch information
bruceharrison1984 authored Sep 12, 2024
2 parents fd5a1ab + d995a32 commit dde6d33
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
build-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: "npm"
Expand All @@ -31,9 +31,9 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: "npm"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get Release Version
id: getReleaseVersion
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/v}

- name: Use Node.js 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.x
registry-url: https://registry.npmjs.org/
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
needs: build
steps:
- name: Use Node.js 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.x
registry-url: https://registry.npmjs.org/
Expand All @@ -83,7 +83,7 @@ jobs:
needs: publish-package
steps:
## Checkout so we can apply the new tag
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: '0'

Expand Down

0 comments on commit dde6d33

Please sign in to comment.