Skip to content

Commit

Permalink
Bump the actions-dependency group with 5 updates (#65)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed May 1, 2024
1 parent e0554e6 commit 9aa5cee
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5.1.0
with:
python-version: "3.10"
- uses: pre-commit/action@v3.0.0
- uses: pre-commit/action@v3.0.1

tagging:
name: "Tagging (dry-run)"
Expand All @@ -19,10 +19,10 @@ jobs:
outputs:
net_tag: ${{ steps.tag_version.outputs.new_tag }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.1
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
dry_run: true
Expand All @@ -31,8 +31,8 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: arduino/setup-task@v1
- uses: actions/checkout@v4
- uses: arduino/setup-task@v2
- name: Lint and tests
run: |
task test
8 changes: 4 additions & 4 deletions .github/workflows/tag_and_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5.1.0
with:
python-version: "3.10"
- uses: pre-commit/action@v3.0.0
- uses: pre-commit/action@v3.0.1
tagging:
name: "Tagging"
needs: pre-commit
runs-on: ubuntu-latest
outputs:
next_tag: ${{ steps.tag_version.outputs.new_version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.1
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- run: |
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ runs:
steps:
- name: get chart name
id: chart_name
uses: mikefarah/yq@v4.33.3
uses: mikefarah/yq@v4.43.1
with:
cmd: "yq eval '.name' ${{ inputs.chart_dir }}/Chart.yaml"

Expand All @@ -72,7 +72,7 @@ runs:
- name: bump version
id: bump_version
uses: mathieudutour/github-tag-action@v5.6
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ inputs.github_token }}
tag_prefix: helm/${{ steps.chart_name.outputs.result }}-
Expand Down

0 comments on commit 9aa5cee

Please sign in to comment.