Skip to content

Update github actions #858

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

Merged
merged 1 commit into from
Nov 20, 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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.1.0
with:
clean: 'false'
fetch-depth: '0'
Expand All @@ -97,11 +97,11 @@ jobs:
restore-keys: |
${{ runner.os }}-nuget-
- name: 🔨 Use .NET Core 3.1 SDK
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
dotnet-version: '3.1.x'
- name: 🔨 Use .NET Core 6.0 SDK
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
dotnet-version: '6.0.x'
- name: 🎁 dotnet tool restore
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/close-milestone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.1.0
with:
fetch-depth: 0

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

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

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

# Ensure the milestone exists
- name: Create Milestone
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.1.0
with:
fetch-depth: 0

- name: Fetch all history for all tags and branches
run: git fetch --prune

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

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

- 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 @@ -16,11 +16,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.1.0

- name: Run Labeler
if: success()
uses: crazy-max/ghaction-github-labeler@v3.1.1
uses: crazy-max/ghaction-github-labeler@v3.2.0
with:
yaml-file: .github/labels.yml
skip-delete: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update-milestone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.1.0
with:
ref: ${{ github.sha }}
fetch-depth: 0
Expand All @@ -23,20 +23,20 @@ jobs:

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

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

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

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