Update GitHub Actions for Node.js 16 deprecation
This commit is contained in:
parent
b6b7006e5f
commit
149523ad3f
1 changed files with 4 additions and 4 deletions
8
.github/workflows/import.yaml
vendored
8
.github/workflows/import.yaml
vendored
|
@ -9,15 +9,15 @@ jobs:
|
||||||
recent:
|
recent:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.head_ref }}
|
ref: ${{ github.head_ref }}
|
||||||
- uses: actions/setup-python@v4
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.10'
|
||||||
- uses: dtolnay/rust-toolchain@stable
|
- uses: dtolnay/rust-toolchain@stable
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
- uses: actions/cache@v3
|
- uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: data/wiki-meta-cache.yaml
|
path: data/wiki-meta-cache.yaml
|
||||||
key: wiki-meta-cache-v2-${{ github.run_id }}
|
key: wiki-meta-cache-v2-${{ github.run_id }}
|
||||||
|
@ -27,7 +27,7 @@ jobs:
|
||||||
run: pip install "steam[client]"
|
run: pip install "steam[client]"
|
||||||
- run: cargo build
|
- run: cargo build
|
||||||
- run: cargo run -- bulk --recent-changes
|
- run: cargo run -- bulk --recent-changes
|
||||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
||||||
with:
|
with:
|
||||||
commit_message: Import recent changes from PCGamingWiki
|
commit_message: Import recent changes from PCGamingWiki
|
||||||
commit_author: GitHub Actions <actions@github.com>
|
commit_author: GitHub Actions <actions@github.com>
|
||||||
|
|
Reference in a new issue