Skip to content

Commit

Permalink
Upgrade actions
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoholiveira authored and Dexus committed Apr 5, 2024
1 parent 31fd8c1 commit 875cf35
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: libressl
version: 3.4.2
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
sudo apt-get install -y haveged ca-certificates
sudo haveged -w 2048
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests_output.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ jobs:
VERSION: 3.4.2
OPENSSL_DIR: /openssl
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: sudo apt-get install -y haveged ca-certificates
- run: |
sudo haveged -w 2048
mkdir openssl
- name: Cache OpenSSL Binary
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./openssl/
key: ${{ runner.os }}-build-openssl-output-v1-${{ matrix.LIBRARY }}-${{ matrix.VERSION
Expand All @@ -81,9 +81,9 @@ jobs:
run: |
set +e -x
if [[ "$OPENSSL_DIR" != "" ]]; then "./bin/test_build_openssl.sh" ; fi
if [[ "$CI" == 'true' ]] && [[ -f "./openssl/bin/openssl" ]]; then
if [[ "$CI" == 'true' ]] && [[ -f "./openssl/bin/openssl" ]]; then
./openssl/bin/openssl version
else
else
openssl version
fi
env:
Expand Down

0 comments on commit 875cf35

Please sign in to comment.