Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade github actions to Node 20 #271

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
name: Helm charts

on:
push:
branches:
- master
- master
pull_request:
types:
- opened
- reopened
- synchronize
- opened
- reopened
- synchronize
branches:
- master
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: make build-helm-charts
- name: Checkout code
uses: actions/checkout@v4

- name: Build
run: make build-helm-charts

4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
branch_version: ${{ steps.branch_version.outputs.branch_version }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.release_branch || github.ref_name }}
fetch-depth: 0
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
RELEASE_BRANCH: ${{ github.event.inputs.release_branch || github.ref_name }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.release_branch || github.ref_name }}
fetch-depth: 0
Expand Down
20 changes: 12 additions & 8 deletions .github/workflows/smoketest.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
name: Smoke test latest release

on:
pull_request:
types:
- opened
- reopened
- synchronize
- opened
- reopened
- synchronize
branches:
- master
- master
paths:
- 'docs/index.yaml'
- 'docs/index.yaml'

jobs:
smoketest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run smoke test hack script
run: hack/smoke-test-release-branch.sh --release-branch ${{ github.head_ref }}
- name: Checkout code
uses: actions/checkout@v4

- name: Run smoke test hack script
run: hack/smoke-test-release-branch.sh --release-branch ${{ github.head_ref }}