Skip to content

chore(deps): update node to v24.13.1 #3921

chore(deps): update node to v24.13.1

chore(deps): update node to v24.13.1 #3921

name: git-push-service
on:
pull_request:
paths:
- git-push-service/**
- '*.json'
- '*.yaml'
- .github/workflows/git-push-service.yaml
push:
branches:
- main
paths:
- git-push-service/**
- '*.json'
- '*.yaml'
- .github/workflows/git-push-service.yaml
defaults:
run:
working-directory: git-push-service
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: .node-version
- run: npm install -g pnpm@latest-10
- run: pnpm i
- run: pnpm check
- uses: int128/update-generated-files-action@678c755dae6c86602016092994c428b76bf58526 # v2.97.0
test:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: .node-version
- run: npm install -g pnpm@latest-10
- run: pnpm i
- run: pnpm test
e2e-test:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: write
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: .node-version
- run: npm install -g pnpm@latest-10
- run: pnpm i
- run: pnpm build
- uses: ./git-push-service
with:
manifests: |
${{ github.workspace }}/git-push-service/tests/fixtures/a/generated.yaml
overlay: e2e-git-push-service
namespace: ns-${{ github.run_number }}
service: a
destination-repository: ${{ github.repository }}
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
ref: ns/monorepo-deploy-actions/e2e-git-push-service/ns-${{ github.run_number }}
path: git-push-service/actual
- run: find actual -type f
- run: yq . actual/applications/ns-${{ github.run_number }}--a.yaml
- run: yq . actual/services/a/generated.yaml
- name: clean up the branch
continue-on-error: true
if: always()
run: |
git push origin --delete refs/heads/ns/monorepo-deploy-actions/e2e-git-push-service/ns-${{ github.run_number }}