1
0
mirror of synced 2026-02-04 16:57:51 +08:00

chore: Update outdated GitHub Actions versions (#1746)

This commit is contained in:
Pádraic Slattery
2026-01-19 19:51:43 +01:00
committed by GitHub
parent 0e5d0b6ea8
commit 3b86671dbb
2 changed files with 7 additions and 7 deletions

View File

@@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# Checkout, install tools.. # Checkout, install tools..
- uses: actions/checkout@v2 - uses: actions/checkout@v6
with: with:
token: ${{ secrets.PAT }} token: ${{ secrets.PAT }}
- uses: actions/setup-node@v4 - uses: actions/setup-node@v6
with: with:
node-version: '22' node-version: '22'
cache: 'npm' cache: 'npm'
@@ -20,7 +20,7 @@ jobs:
- run: npm run build - run: npm run build
- run: npm run lint - run: npm run lint
# Save files. # Save files.
- uses: stefanzweifel/git-auto-commit-action@v4 - uses: stefanzweifel/git-auto-commit-action@v7
with: with:
commit_message: '[ci skip] Automatic file changes/fix' commit_message: '[ci skip] Automatic file changes/fix'
branch: 'master' branch: 'master'
@@ -34,13 +34,13 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# Checkout, install tools.. # Checkout, install tools..
- uses: actions/checkout@v2 - uses: actions/checkout@v6
with: with:
lfs: true lfs: true
fetch-depth: 0 fetch-depth: 0
# Use docker to build current directory ./Dockfile # Use docker to build current directory ./Dockfile
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v1 uses: docker/login-action@v3
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}

View File

@@ -8,8 +8,8 @@ jobs:
markdown-lint: markdown-lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v6
- uses: actions/setup-node@v4 - uses: actions/setup-node@v6
with: with:
node-version: '22' node-version: '22'
cache: 'npm' cache: 'npm'