Skip to content

Commit

Permalink
upgraded actions and dependencies (#1119)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewChubatiuk authored Jul 8, 2024
1 parent c78015d commit 4ff2d9e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
- uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: ".github/labeler.yaml"
14 changes: 7 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:
- development

env:
HELM_VERSION: 3.9.2
YQ_VERSION: 4.35.1
HELM_VERSION: 3.15.1
YQ_VERSION: 4.44.2

jobs:
release:
Expand All @@ -23,21 +23,21 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.VM_BOT_GH_TOKEN }}

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v5
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.VM_BOT_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.VM_BOT_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true

- name: Install tools
uses: yokawasa/action-setup-kube-tools@v0.9.2
uses: yokawasa/action-setup-kube-tools@v0.11.1
with:
setup-tools: |
helmv3
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
export CHANGELOG=$changelog
# ArtifactHub annotation in Chart.yaml file
yq -i '.annotations["artifacthub.io/changes"] = (load_str(strenv(CHANGELOG)) | capture("## Next release[\s]*(?P<changes>[\s\S]*?)[\s]*##") | "\(.changes)\n")' $CHART_FILE
yq -M -i '.annotations["artifacthub.io/changes"] = (load_str(strenv(CHANGELOG)) | capture("## Next release[\s]*(?P<changes>[\s\S]*?)[\s]*##") | "\(.changes)\n")' $CHART_FILE
# Create release notes
echo "# Release notes for version $CHART_VERSION" > $RN_FILE
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
done
- name: Release
uses: helm/chart-releaser-action@v1.5.0
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.VM_BOT_GH_TOKEN }}"
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ on:
- '**.md'

env:
HELM_VERSION: 3.11.3
HELM_VERSION: 3.15.1

jobs:
lint-charts:
name: Lint Charts
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@master
uses: actions/checkout@v4

- name: Install helm
uses: yokawasa/action-setup-kube-tools@v0.9.2
uses: yokawasa/action-setup-kube-tools@v0.11.1
with:
setup-tools: |
helmv3
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/run-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- '**.md'

env:
HELM_VERSION: 3.11.3
HELM_VERSION: 3.15.1

jobs:
get-changed-charts:
Expand All @@ -23,13 +23,13 @@ jobs:
charts: ${{ steps.charts-diff.outputs.charts }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Run changed-files with dir_names
id: changed-charts
uses: tj-actions/changed-files@v41
uses: tj-actions/changed-files@v44
with:
files: |
charts/**
Expand All @@ -55,20 +55,20 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install Kubernetes tools
uses: yokawasa/action-setup-kube-tools@v0.9.2
uses: yokawasa/action-setup-kube-tools@v0.11.1
with:
setup-tools: |
helmv3
kubectl
helm: "${{ env.HELM_VERSION }}"
kubectl: "${{ matrix.k8s_version }}"

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v5
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.VM_BOT_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.VM_BOT_PASSPHRASE }}
Expand All @@ -46,7 +46,7 @@ jobs:
done
- name: Checkout to pages
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: gh-pages

Expand Down

0 comments on commit 4ff2d9e

Please sign in to comment.