Skip to content

Commit

Permalink
ci(workflows): upgrade to actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
pinglin committed Sep 4, 2024
1 parent afae1ce commit c715bac
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/helm-integration-test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
minikube start --cpus 4 --memory 10485
- name: Checkout repo and load .env
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: instill-ai/instill-core

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-integration-test-console.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
minikube start --cpus 4 --memory 10485
- name: Checkout repo and load .env
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: instill-ai/instill-core

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: sudo service docker restart

- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: instill-ai/instill-core

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test-console.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: sudo service docker restart

- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: instill-ai/instill-core

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: sudo service docker restart

- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: instill-ai/instill-core

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: sudo service docker restart

- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: instill-ai/instill-core

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/releases-helm-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
HELM_CHART_REPO_BRANCH: main
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.botGitHubToken }}

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
echo "dir=${PACKAGES}" >> $GITHUB_OUTPUT
- name: Checkout Helm chart repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ env.HELM_CHART_REPO }}
path: .helm-chart-repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
config-file: release-please/config.json
manifest-file: release-please/manifest.json
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false}]'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
with:
token: ${{ secrets.botGitHubToken }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
".assets[] | select(.name | test("\""^helm-docs_.+_Linux_${arch}\.tar\.gz$"\"")) | .browser_download_url" \
| xargs curl -SsL \
| tar zxf - -C /usr/local/bin
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.botGitHubToken }}
- name: Update component image versions
Expand Down

0 comments on commit c715bac

Please sign in to comment.