Skip to content

Commit

Permalink
build: Update actions from node12 to 16 (#337)
Browse files Browse the repository at this point in the history
* build: Update actions from node12 to 16

checkout@v2 and setup-python@v2 are Node 12 and deprecated

* build: change python to test
  • Loading branch information
bwendlandt-intel authored Sep 27, 2023
1 parent 2e85715 commit 9dffede
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/mkdocs_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: '3.11'
# Runs a single command using the runners shell
- name: Run a one-line script
run: |
Expand Down

0 comments on commit 9dffede

Please sign in to comment.