Skip to content

Commit 9287eb6

Browse files
Update referenced actions
1 parent ab01627 commit 9287eb6

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.github/workflows/4_6_2_Core_Unit_Tests_Win.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,43 +18,43 @@ jobs:
1818
runs-on: windows-latest
1919
steps:
2020
- name: Clone webprofusion/certify
21-
uses: actions/checkout@master
21+
uses: actions/checkout@v4
2222
with:
2323
path: ./certify
2424

2525
- name: Clone webprofusion/anvil
26-
uses: actions/checkout@master
26+
uses: actions/checkout@v4
2727
with:
2828
repository: webprofusion/anvil
2929
ref: refs/heads/main
3030
path: ./libs/anvil
3131

3232
- name: Clone webprofusion/certify-plugins (development branch push)
3333
if: ${{ github.event_name == 'push' && (contains(github.ref_name, '_dev') || github.ref_name == 'development') }}
34-
uses: actions/checkout@master
34+
uses: actions/checkout@v4
3535
with:
3636
repository: webprofusion/certify-plugins
3737
ref: refs/heads/development
3838
path: ./certify-plugins
3939

4040
- name: Clone webprofusion/certify-plugins (release branch push)
4141
if: ${{ github.event_name == 'push' && (contains(github.ref_name, '_rel') || github.ref_name == 'release') }}
42-
uses: actions/checkout@master
42+
uses: actions/checkout@v4
4343
with:
4444
repository: webprofusion/certify-plugins
4545
ref: refs/heads/release
4646
path: ./certify-plugins
4747

4848
- name: Clone webprofusion/certify-plugins (pull request)
4949
if: ${{ github.event_name == 'pull_request' }}
50-
uses: actions/checkout@master
50+
uses: actions/checkout@v4
5151
with:
5252
repository: webprofusion/certify-plugins
5353
ref: ${{ github.base_ref }}
5454
path: ./certify-plugins
5555

5656
- name: Setup .NET Core
57-
uses: actions/setup-dotnet@master
57+
uses: actions/setup-dotnet@v4
5858
with:
5959
dotnet-version: ${{ env.DOTNET_VERSION }}
6060

.github/workflows/DotNetCore_Unit_Tests_Linux.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,43 +18,43 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Clone webprofusion/certify
21-
uses: actions/checkout@master
21+
uses: actions/checkout@v4
2222
with:
2323
path: ./certify
2424

2525
- name: Clone webprofusion/anvil
26-
uses: actions/checkout@master
26+
uses: actions/checkout@v4
2727
with:
2828
repository: webprofusion/anvil
2929
ref: refs/heads/main
3030
path: ./libs/anvil
3131

3232
- name: Clone webprofusion/certify-plugins (development branch push)
3333
if: ${{ github.event_name == 'push' && (contains(github.ref_name, '_dev') || github.ref_name == 'development') }}
34-
uses: actions/checkout@master
34+
uses: actions/checkout@v4
3535
with:
3636
repository: webprofusion/certify-plugins
3737
ref: refs/heads/development
3838
path: ./certify-plugins
3939

4040
- name: Clone webprofusion/certify-plugins (release branch push)
4141
if: ${{ github.event_name == 'push' && (contains(github.ref_name, '_rel') || github.ref_name == 'release') }}
42-
uses: actions/checkout@master
42+
uses: actions/checkout@v4
4343
with:
4444
repository: webprofusion/certify-plugins
4545
ref: refs/heads/release
4646
path: ./certify-plugins
4747

4848
- name: Clone webprofusion/certify-plugins (pull request)
4949
if: ${{ github.event_name == 'pull_request' }}
50-
uses: actions/checkout@master
50+
uses: actions/checkout@v4
5151
with:
5252
repository: webprofusion/certify-plugins
5353
ref: ${{ github.base_ref }}
5454
path: ./certify-plugins
5555

5656
- name: Setup .NET Core
57-
uses: actions/setup-dotnet@master
57+
uses: actions/setup-dotnet@v4
5858
with:
5959
dotnet-version: ${{ env.DOTNET_VERSION }}
6060

.github/workflows/DotNetCore_Unit_Tests_Win.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,43 +18,43 @@ jobs:
1818
runs-on: windows-latest
1919
steps:
2020
- name: Clone webprofusion/certify
21-
uses: actions/checkout@master
21+
uses: actions/checkout@v4
2222
with:
2323
path: ./certify
2424

2525
- name: Clone webprofusion/anvil
26-
uses: actions/checkout@master
26+
uses: actions/checkout@v4
2727
with:
2828
repository: webprofusion/anvil
2929
ref: refs/heads/main
3030
path: ./libs/anvil
3131

3232
- name: Clone webprofusion/certify-plugins (development branch push)
3333
if: ${{ github.event_name == 'push' && (contains(github.ref_name, '_dev') || github.ref_name == 'development') }}
34-
uses: actions/checkout@master
34+
uses: actions/checkout@v4
3535
with:
3636
repository: webprofusion/certify-plugins
3737
ref: refs/heads/development
3838
path: ./certify-plugins
3939

4040
- name: Clone webprofusion/certify-plugins (release branch push)
4141
if: ${{ github.event_name == 'push' && (contains(github.ref_name, '_rel') || github.ref_name == 'release') }}
42-
uses: actions/checkout@master
42+
uses: actions/checkout@v4
4343
with:
4444
repository: webprofusion/certify-plugins
4545
ref: refs/heads/release
4646
path: ./certify-plugins
4747

4848
- name: Clone webprofusion/certify-plugins (pull request)
4949
if: ${{ github.event_name == 'pull_request' }}
50-
uses: actions/checkout@master
50+
uses: actions/checkout@v4
5151
with:
5252
repository: webprofusion/certify-plugins
5353
ref: ${{ github.base_ref }}
5454
path: ./certify-plugins
5555

5656
- name: Setup .NET Core
57-
uses: actions/setup-dotnet@master
57+
uses: actions/setup-dotnet@v4
5858
with:
5959
dotnet-version: ${{ env.DOTNET_VERSION }}
6060

0 commit comments

Comments
 (0)