Skip to content

Commit

Permalink
Merge pull request #93 from danielemery/inline-node-versions-in-githu…
Browse files Browse the repository at this point in the history
…b-actions

Inline the node versions in Github actions to test if renovate can include them in it's upgrade PR
  • Loading branch information
danielemery authored Dec 18, 2024
2 parents d3f8ed1 + 7faad88 commit cd03f4c
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 cd03f4c

Please sign in to comment.