Skip to content

Commit

Permalink
Inline the node versions in Github actions to test if renovate can in…
Browse files Browse the repository at this point in the history
…clude them in it's upgrade PR
  • Loading branch information
danielemery committed Dec 18, 2024
1 parent 9a757f2 commit 7faad88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ permissions:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
NODE_VERSION: 22.10.0

jobs:
build:
Expand All @@ -30,7 +29,7 @@ jobs:
- name: Configure node
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
node-version: 22.10.0

- name: Install packages
run: npm ci
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/validate-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ on:
permissions:
contents: read

env:
NODE_VERSION: 22.10.0

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -21,7 +18,7 @@ jobs:
- name: Configure node
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
node-version: 22.10.0

- name: Install packages
run: npm ci
Expand All @@ -48,7 +45,7 @@ jobs:
- name: Configure node
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
node-version: 22.10.0

- name: Install packages
run: npm ci
Expand Down

0 comments on commit 7faad88

Please sign in to comment.