Skip to content

Commit

Permalink
#115 chore: fix uses directive for github actions
Browse files Browse the repository at this point in the history
+ added missing version tag for action setup-dotnet
  • Loading branch information
joseantmazonsb committed Feb 23, 2022
1 parent bdac7a2 commit 7d9bab5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/latest-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v2

- name: Set up Dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/latest-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@v2

- name: Set up Dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v2

- name: Set up Dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@v2

- name: Set up Dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet-version }}

Expand Down

0 comments on commit 7d9bab5

Please sign in to comment.