commit b6e6e6d95b52d90f55598460477626545e37bb41
parent 7d876e3ffc93022b5f50f45e64f386925c71fcc9
Author: Gavin Rehkemper <gavin@gavinr.com>
Date: Tue, 16 Aug 2022 22:16:28 -0500
chore(deps): updated gh-actions release script
Diffstat:
2 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
@@ -6,14 +6,16 @@ on:
jobs:
release:
name: Release
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v1
+ uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
- name: Setup Node.js
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v2
with:
- node-version: 12
+ node-version: 'lts/*'
- name: Install dependencies
run: npm ci
- name: Release
diff --git a/RELEASE.md b/RELEASE.md
@@ -2,6 +2,6 @@
Releases are automated via semantic-release.
-Please follow [these commit guidelines](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines).
+Please follow [these commit guidelines](https://github.com/angular/angular/blob/main/CONTRIBUTING.md#-commit-message-format).
-If a PR does not follow those guidelines, the person merging the PR should Squash and merge, updating the merge commit to follow those guidelines.-
\ No newline at end of file
+If a PR does not follow those guidelines, the person merging the PR should Squash and merge, updating the merge commit to follow those guidelines.