summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2022-11-10 04:43:00 +0000
committerGitHub <noreply@github.com>2022-11-10 04:43:00 +0000
commit79d294663c88b5de7ea1e925a778607406edecb5 (patch)
tree93c05f8de22c1808b8418c58f559ed2361f0c232
parentd2c55a3d8ace486703e5a0dfda34e5b413ba7986 (diff)
parent676496222143526e62ece30d5be12054749c264d (diff)
downloadchef-79d294663c88b5de7ea1e925a778607406edecb5.tar.gz
Merge pull request #13344 from gene1wood/address_deprecation_notices
-rw-r--r--.github/workflows/kitchen.yml6
-rw-r--r--.github/workflows/lint.yml13
2 files changed, 8 insertions, 11 deletions
diff --git a/.github/workflows/kitchen.yml b/.github/workflows/kitchen.yml
index 7844ebe111..589d572be4 100644
--- a/.github/workflows/kitchen.yml
+++ b/.github/workflows/kitchen.yml
@@ -16,7 +16,7 @@ jobs:
ruby: ['3.1']
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: 'Upgrade Ruby Devkit on Windows'
id: upgrade_ruby
run: |
@@ -135,7 +135,7 @@ jobs:
ruby: ["3.1"] # macos-11.0 is not public for now
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
clean: true
- name: 'Upgrade Ruby Devkit on Macos'
@@ -205,7 +205,7 @@ jobs:
CHEF_LICENSE: accept-no-persist
steps:
- name: Check out code
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 6c71ae89c7..bbd0790633 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -13,12 +13,12 @@ jobs:
env:
BUNDLE_WITHOUT: ruby_shadow:omnibus_package
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: false
- - uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR
+ - uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR
- run: |
gem install chefstyle
chefstyle -c .rubocop.yml
@@ -26,13 +26,10 @@ jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
- - uses: carlosperate/download-file-action@v1.0.3
+ - uses: actions/checkout@v3
+ - uses: carlosperate/download-file-action@v2.0.0
id: download-custom-dictionary
with:
file-url: 'https://raw.githubusercontent.com/chef/chef_dictionary/main/chef.txt'
file-name: 'chef_dictionary.txt'
- - uses: zwaldowski/cspell-action@v1
- with:
- config: cspell.json
- paths: "**/*"
+ - uses: streetsidesoftware/cspell-action@v2.12.0