Skip to content

Commit

Permalink
Merge pull request internetarchive#8760 from jimchamp/update-gh-actions
Browse files Browse the repository at this point in the history
update `setup-node` and `cache` actions to v4
  • Loading branch information
cdrini authored Jan 27, 2024
2 parents efa7fae + b7f406f commit f7942a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto_unassigner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm install @octokit/action
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/javascript_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
# Should match what's in our Dockerfile
node-version: '20' # Also update the `key` in the `with` map, below
- uses: actions/cache@v3
- uses: actions/cache@v4
id: npm-cache
with:
# Caching node_modules isn't recommended because it can break across
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version-file: pyproject.toml
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
key: ${{ runner.os }}-venv-${{ env.pythonLocation }}-${{ hashFiles('requirements*.txt') }}
Expand Down

0 comments on commit f7942a1

Please sign in to comment.