Skip to content

Commit

Permalink
Update github actions to use latest version's, have dependabot update…
Browse files Browse the repository at this point in the history
… package.json as well as package-lock.json, update release.yml auto gen to make tagged auto releases prettier
  • Loading branch information
duttonw committed May 28, 2024
1 parent e0c2130 commit 8985779
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version: 2
updates:
- package-ecosystem: npm
versioning-strategy: increase
directory: "/"
target-branch: "develop"
schedule:
Expand Down
12 changes: 12 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ changelog:
exclude:
labels:
- dependencies
- bug
- Semver-Major
- breaking-change
authors:
- dependabot[bot]

- title: 🐛 Bug Fixes
labels:
- bug

- title: 👒 Dependencies
labels:
- dependencies
authors:
- dependabot[bot]
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

- run: npm run test

- uses: actions/upload-artifact@v4.3.1
- uses: actions/upload-artifact@v4
with:
name: Tokens
path: ./dist
2 changes: 1 addition & 1 deletion .github/workflows/githubPackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- run: npm run build
- run: npm run test
- uses: actions/upload-artifact@v4.3.1
- uses: actions/upload-artifact@v4
with:
name: Tokens
path: ./dist
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/npmjsPackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
Expand All @@ -24,8 +24,8 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Release
run: gh release create "${GITHUB_REF#refs/tags/}" --generate-notes
env:
Expand Down

0 comments on commit 8985779

Please sign in to comment.