Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update github actions (patch) #773

Merged
merged 1 commit into from
Apr 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/close-milestone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ jobs:
fetch-depth: 0

- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected].11
uses: gittools/actions/gitversion/[email protected].13
with:
versionSpec: '5.x'

- name: Install GitReleaseManager
uses: gittools/actions/gitreleasemanager/[email protected].11
uses: gittools/actions/gitreleasemanager/[email protected].13
with:
versionSpec: '0.11.x'

- name: Use GitVersion
id: gitversion
uses: gittools/actions/gitversion/[email protected].11
uses: gittools/actions/gitversion/[email protected].13

# Ensure the milestone exists
- name: Create Milestone
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
run: git fetch --prune

- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected].11
uses: gittools/actions/gitversion/[email protected].13
with:
versionSpec: '5.x'

- name: Use GitVersion
id: gitversion
uses: gittools/actions/gitversion/[email protected].11
uses: gittools/actions/gitversion/[email protected].13

- name: Create Milestone
uses: WyriHaximus/github-action-create-milestone@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected].4
uses: actions/[email protected].5

- name: Checkout tools repo
uses: actions/[email protected].4
uses: actions/[email protected].5
with:
repository: RocketSurgeonsGuild/.github
path: .rsg
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].5
- run: |
npm install
npm run all
8 changes: 4 additions & 4 deletions .github/workflows/update-milestone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected].4
uses: actions/[email protected].5
with:
ref: ${{ github.sha }}
fetch-depth: 0
Expand All @@ -24,20 +24,20 @@ jobs:

- name: Install GitVersion
if: ${{ github.event.action == 'opened' }}
uses: gittools/actions/gitversion/[email protected].11
uses: gittools/actions/gitversion/[email protected].13
with:
versionSpec: '5.x'

- name: Install GitReleaseManager
if: ${{ github.event.action == 'opened' }}
uses: gittools/actions/gitreleasemanager/[email protected].11
uses: gittools/actions/gitreleasemanager/[email protected].13
with:
versionSpec: '0.11.x'

- name: Use GitVersion
if: ${{ github.event.action == 'opened' }}
id: gitversion
uses: gittools/actions/gitversion/[email protected].11
uses: gittools/actions/gitversion/[email protected].13

- name: Create Milestone
if: ${{ github.event.action == 'opened' }}
Expand Down