Skip to content

Commit

Permalink
Merge pull request #190 from GoGoOtaku/master
Browse files Browse the repository at this point in the history
Update github actions Node 16
  • Loading branch information
GoGoOtaku authored May 11, 2023
2 parents 99759a7 + db5e325 commit 1887d72
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/multi-os-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
steps:

- name: Install packages
uses: mstksg/get-package@v1
uses: delgurth/get-package@v6
with:
# Space-separated list of packages to install using apt-get. Will only run if on ubuntu.
apt-get: libssl-dev

- name: Checkout with submodules
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'true'

Expand All @@ -35,13 +35,13 @@ jobs:
steps:

- name: Install packages
uses: mstksg/get-package@v1
uses: delgurth/get-package@v6
with:
# Space-separated list of packages to install using brew install. Will only run if on OSX.
brew: openssl

- name: Checkout with submodules
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'true'

Expand All @@ -64,7 +64,7 @@ jobs:
packages: gcc-core binutils make zip libssl-devel # optional

- name: Checkout with submodules
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'true'

Expand Down
2 changes: 1 addition & 1 deletion src/pedis.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ int main(int argc, char *argv[])
case IMAGE_FILE_MACHINE_I386:
break;
default:
EXIT_ERROR("Unsuported machine (AMD64 or I386)." );
EXIT_ERROR("Unsupported machine (AMD64 or I386)." );
return EXIT_FAILURE;
}

Expand Down

0 comments on commit 1887d72

Please sign in to comment.