Update GitHub Actions for Node.js 16 deprecation

This commit is contained in:
mtkennerly 2024-03-16 10:00:47 -04:00
parent b6b7006e5f
commit 149523ad3f
No known key found for this signature in database
GPG key ID: E764BE00BE6E6408

View file

@ -9,15 +9,15 @@ jobs:
recent:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: data/wiki-meta-cache.yaml
key: wiki-meta-cache-v2-${{ github.run_id }}
@ -27,7 +27,7 @@ jobs:
run: pip install "steam[client]"
- run: cargo build
- run: cargo run -- bulk --recent-changes
- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Import recent changes from PCGamingWiki
commit_author: GitHub Actions <actions@github.com>