Skip to content

Commit 84cc0b0

Browse files
authored
Update actions/checkout GitHub Actions to v4 (#827)
## Problem The GitHub actions used by CI have a warning that they are using a deprecated Node.js version. ## Solution Update the actions to the latest version.
1 parent 16cef60 commit 84cc0b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/csharp-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: windows-latest
1616
steps:
1717
- name: Sync Code
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
- name: Build
2020
run: |
2121
dotnet build -c Release ./telemetry/csharp/AwsToolkit.Telemetry.sln

.github/workflows/lint-telemetry-definitions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Sync Code
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: Compile the Validation code
1717
run: |

0 commit comments

Comments
 (0)