Skip to content

Commit

Permalink
Setting actions version to latest (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
wallentx authored Jan 19, 2023
1 parent 527ddff commit cd44884
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test-cplusplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: cmake, RunTests, and valgrind on ubuntu-20.04
run: |
Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: cmake, RunTests with address- and undefined sanitizer on Ubuntu
run: |
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: cmake, RunTests with thread sanitizer on Ubuntu
run: |
Expand All @@ -66,7 +66,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: cmake, RunTests with Windows
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/doc-html-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:

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

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.8'
Expand All @@ -35,14 +35,14 @@ jobs:
# python -m markdown -x mdx_math --verbose -f proof_of_space.html proof_of_space.md

- name: html to pdf
uses: fifsky/html-to-pdf-action@master
uses: fifsky/html-to-pdf-action@v0.1
with:
htmlFile: ./documents/proof_of_space.html
outputFile: ./documents/proof_of_space.pdf
pdfOptions: '{"margin": {"top": "1cm", "left": "1cm", "right": "1cm", "bottom": "1cm"}}'

- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Proof-of-Space-Document
path: ./documents/proof_of_space.pdf
4 changes: 2 additions & 2 deletions .github/workflows/plot-k27-no-bitfield.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:

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

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.8'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/plot-k27.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:

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

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.8'
Expand Down

0 comments on commit cd44884

Please sign in to comment.