Skip to content

Commit

Permalink
ci: Update all actions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
thygesteffensen committed Dec 14, 2022
1 parent d9dfdd7 commit 9adf814
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Testing
steps:
- name: Checkout code base
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Run tests
run: dotnet test --verbosity normal
Expand All @@ -20,10 +20,10 @@ jobs:
name: Building
steps:
- name: Checkout code base
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1
uses: microsoft/setup-msbuild@v1.1

- name: Restore NuGet packages
run: nuget restore PowerAutomateMockUp.sln
Expand All @@ -32,7 +32,7 @@ jobs:
run: msbuild /p:OutputPath=../build /p:Configuration=Release /p:RestorePackages=false

- name: Archive build to artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: build
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Run tests
run: dotnet test --verbosity normal
Expand All @@ -24,10 +24,10 @@ jobs:
- test
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3

- name: Add plugin for conventional commits
run: npm install conventional-changelog-conventionalcommits
Expand All @@ -50,7 +50,7 @@ jobs:
run: echo ${env:RELEASE_VERSION}

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1
uses: microsoft/setup-msbuild@v1.1

- name: Restore NuGet packages
run: nuget restore PowerAutomateMockUp.sln
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: "actions/checkout@master"
- name: "TODO to Issue"
uses: "alstr/todo-to-issue-action@v2.4"
uses: "alstr/todo-to-issue-action@v4"
id: "todo"
with:
TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 9adf814

Please sign in to comment.