Skip to content

Commit

Permalink
ci: bump actions and Python/Node
Browse files Browse the repository at this point in the history
  • Loading branch information
mkniewallner authored and neersighted committed Sep 3, 2022
1 parent 58d2b99 commit 3dd9111
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.10"

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: "14"
node-version: "18"

- name: Build Assets
run: npm ci && npm run prod
Expand All @@ -63,7 +63,7 @@ jobs:
run: hugo -v --minify

- name: Deploy
uses: amondnet/vercel-action@v20
uses: amondnet/vercel-action@v25
id: vercel-action
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -68,7 +68,7 @@ jobs:
run: poetry config virtualenvs.in-project true

- name: Set up cache
uses: actions/cache@v2
uses: actions/cache@v3
id: cache
with:
path: .venv
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
poetry show poetry-plugin-export | grep version | cut -d : -f 2 | xargs)
- name: Checkout Plugin Source (poetry-plugin-export)
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: poetry-plugin-export
repository: python-poetry/poetry-plugin-export
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.10"

Expand Down

0 comments on commit 3dd9111

Please sign in to comment.