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

Update actions/checkout action to v4 #89

Merged
merged 1 commit into from
Nov 15, 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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
REF: ${{ steps.generate-ref.outputs.ref }}
steps:
- run: helm version
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- run: helm version
- id: generate-ref
name: Generate Ref
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- "helm plugin install https://github.com/hypnoglow/helm-s3.git && helm plugin list"
- "helm env"
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: ./
with:
exec: ${{ matrix.exec }}
Expand All @@ -65,7 +65,7 @@ jobs:
matrix:
runner: ${{ fromJson(needs.runner-matrix.outputs.runner) }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- run: helm version
- uses: ./
id: helm3
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
matrix:
runner: ${{ fromJson(needs.runner-matrix.outputs.runner) }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Create k8s Kind Cluster
uses: helm/[email protected]
- name: Get running image ID
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
matrix:
runner: ${{ fromJson(needs.runner-matrix.outputs.runner) }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Create k8s Kind Cluster
uses: helm/[email protected]
- name: Get running image ID
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
matrix:
runner: ${{ fromJson(needs.runner-matrix.outputs.runner) }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Create k8s Kind Cluster
uses: helm/[email protected]
- name: Get running image ID
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/craft-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- generate-changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Required due to the way Git works, without it this action won't be able to find any or the correct tags
- name: Create release/${{ env.MILESTONE }} branch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/set-milestone-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
set-milestone:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
if: github.event.pull_request.milestone == null
- name: 'Get Previous tag'
if: github.event.pull_request.milestone == null
Expand Down
Loading