Skip to content

Commit

Permalink
(CONT-903) Use checkout@v3 in Kubernetes
Browse files Browse the repository at this point in the history
Prior to this commit, there were deprecation warnings in the k8s CI. This is because K8s was using checkout@v2 rather than v3. This commit adds v3.
  • Loading branch information
GSPatton committed May 16, 2023
1 parent 7b72e48 commit 87e69ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout Source
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Activate Ruby 2.7
uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout Source
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Activate Ruby 2.7
uses: ruby/setup-ruby@v1
Expand Down

0 comments on commit 87e69ab

Please sign in to comment.