Skip to content

Commit

Permalink
Update actions to Node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
thejohnfreeman committed Feb 22, 2024
1 parent 7b60932 commit d10802f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
using: composite
steps:
- name: install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
# The `imp` module is removed in Python 3.12
# but required by Conan 1.x.
Expand All @@ -23,7 +23,7 @@ runs:
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: restore Python cache directory
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-${{ inputs.key }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/install-windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
echo "USERPROFILE=%USERPROFILE%" >> $GITHUB_OUTPUT
- name: install Make from cache
id: cache-scoop
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ steps.env.outputs.PROGRAMDATA }}\scoop
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
install_dir: /usr/local
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: install environment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
install_dir: C:\\
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: install environment
Expand Down

0 comments on commit d10802f

Please sign in to comment.