-
Notifications
You must be signed in to change notification settings - Fork 0
fix: pin to latest release #80
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,7 @@ on: | |
| - synchronize | ||
| jobs: | ||
| pr: | ||
| uses: parcelLab/ci/.github/workflows/pr.yaml@v8 | ||
| uses: parcelLab/ci/.github/workflows/pr.yaml@v8.3.3 | ||
|
||
| secrets: | ||
| repoAccessToken: ${{ secrets.GITHUB_TOKEN }} | ||
| actionlint: | ||
|
|
@@ -24,4 +24,4 @@ jobs: | |
| - name: Run actionlint | ||
| run: /home/runner/go/bin/actionlint | ||
| yamllint: | ||
| uses: parcelLab/ci/.github/workflows/yaml.yaml@v8 | ||
| uses: parcelLab/ci/.github/workflows/yaml.yaml@v8.3.3 | ||
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -38,6 +38,6 @@ jobs: | |||||
| git tag "${{ steps.version.outputs.major_version }}" | ||||||
| git push origin tag "${{ steps.version.outputs.major_version }}" | ||||||
| release: | ||||||
| uses: parcelLab/ci/.github/workflows/release.yaml@v8 | ||||||
| uses: parcelLab/ci/.github/workflows/release.yaml@v8.3.3 | ||||||
|
||||||
| uses: parcelLab/ci/.github/workflows/release.yaml@v8.3.3 | |
| uses: parcelLab/ci/.github/workflows/release.yaml@v8 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -15,4 +15,4 @@ on: | |||||
| workflow_dispatch: | ||||||
| jobs: | ||||||
| lint: | ||||||
| uses: parcelLab/ci/.github/workflows/yaml.yaml@v8 | ||||||
| uses: parcelLab/ci/.github/workflows/yaml.yaml@v8.3.3 | ||||||
|
||||||
| uses: parcelLab/ci/.github/workflows/yaml.yaml@v8.3.3 | |
| uses: parcelLab/ci/.github/workflows/yaml.yaml@v8 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -162,7 +162,7 @@ jobs: | |||||
|
|
||||||
| build: | ||||||
| needs: [initialize] | ||||||
| uses: parcelLab/ci/.github/workflows/build-image.yaml@v8 | ||||||
| uses: parcelLab/ci/.github/workflows/build-image.yaml@v8.3.3 | ||||||
|
||||||
| uses: parcelLab/ci/.github/workflows/build-image.yaml@v8.3.3 | |
| uses: parcelLab/ci/.github/workflows/build-image.yaml@v8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pinning this reusable workflow ref to
@v8.3.3bypasses the repo’s movingv8tag (maintained by.github/workflows/ci.release.yaml) and will require manual updates to pick up future fixes (no Dependabot config found to automate bumps). Consider using@v8if the intent is to always run against the latest v8 release.