Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Nov 20, 2022
1 parent c14b70e commit fe27432
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
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

0 comments on commit fe27432

Please sign in to comment.