Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/actions/setup-node…
Browse files Browse the repository at this point in the history
…-3.8.1
  • Loading branch information
TomFreeman authored Jan 26, 2024
2 parents 8443926 + 8d3c9a1 commit 5c901b7
Show file tree
Hide file tree
Showing 4 changed files with 410 additions and 307 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Set Node.js 16.x
uses: actions/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/create-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
create-branch:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.token }}
GH_TOKEN: ${{ secrets.personal_token }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.token }}
token: ${{ secrets.personal_token }}

- name: Set Node.js 16.x
uses: actions/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ jobs:
units:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm ci
- run: npm test

# test action works running from the graph
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm ci
- uses: ./
with:
github-token: ${{ secrets.TOKEN }}
github-token: ${{ secrets.personal_token }}
prerelease-label: 'prease-release-me'
major-release-label: 'major-tom'
minor-release-label: 'minor-tom'
Loading

0 comments on commit 5c901b7

Please sign in to comment.