Fix typos discovered by codespell by cclauss · Pull Request #1068 · actions/setup-python

Description:
Describe your changes.

codespell --skip="./dist/cache-save/*" --write-changes \
    --ignore-words-list=aas,abd,addin,afterall,caf,calender,compre,coreutil,fo,fpr,iif,nam,nervana,ontext,ser,sycle,trys,vor

Please do an extra review on the proposed code change on lines 19176 and 19180.
These proposed changes might fix a bug where the correct spelling on line 19178 differs from these two typos.

-     var callback = function (error, responce) {
+     var callback = function (error, response) {
        request.removeListener('error', callback);
        request.removeListener('response', onResponse);

-       return cb.call(this, error, responce);
+       return cb.call(this, error, response);
      };

Related issue:
Add link to the related issue.