Skip to content

Commit dd33788

Browse files
build(deps): update actions/upload-artifact digest to 65c4c4a (#1069)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 3367737 commit dd33788

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/reusable-api-extractor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Run API Documenter
2929
run: pnpm run ngx-meta:api-documenter
3030
- name: Upload API Documenter generated Markdown docs
31-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
31+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
3232
with:
3333
name: ngx-meta${{ env.API_DOCS_ARTIFACT_NAME_SUFFIX }}
3434
path: projects/ngx-meta/docs/content/api

.github/workflows/reusable-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Build libraries
2929
run: pnpm run build
3030
- name: Upload distribution files
31-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
31+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
3232
with:
3333
name: ngx-meta${{ env.DIST_ARTIFACT_NAME_SUFFIX }}
3434
path: projects/ngx-meta/dist
@@ -37,7 +37,7 @@ jobs:
3737
- name: Instrument for coverage
3838
run: pnpm run instrument-for-coverage
3939
- name: Upload distribution files with coverage instrumentation
40-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
40+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
4141
with:
4242
name: ngx-meta${{ env.DIST_ARTIFACT_NAME_SUFFIX }}${{ env.COVERAGE_ARTIFACT_NAME_SUFFIX }}
4343
path: projects/ngx-meta/dist
@@ -55,7 +55,7 @@ jobs:
5555
- name: Run tsc
5656
run: pnpm run ngx-meta:tsc
5757
- name: Upload compiled JS files
58-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
58+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
5959
with:
6060
name: ngx-meta${{ env.TSC_ARTIFACT_NAME_SUFFIX }}
6161
path: projects/ngx-meta/out

.github/workflows/reusable-bundle-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
- name: Generate bundle size report
100100
run: pnpm run report ${{ matrix.cli-version-alias }} --git-ref '${{ github.sha }}'
101101
- name: Upload bundle size analysis results
102-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
102+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
103103
with:
104104
name: ngx-meta${{ env.BUNDLE_SIZE_ARTIFACT_NAME_SUFFIX }}-${{ matrix.cli-version-alias }}
105105
path: ${{ env.BUNDLE_SIZE_DIR }}/${{ env.OUTPUT_DIR }}

.github/workflows/reusable-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
# Given we're doing caching manually, installing apart to leverage cache
8383
install: false
8484
- name: Upload coverage report
85-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
85+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
8686
if: failure() || success()
8787
with:
8888
name: ngx-meta-e2e-${{ matrix.cli-version-alias }}${{ env.COVERAGE_REPORT_ARTIFACT_NAME_SUFFIX }}

.github/workflows/reusable-example-apps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
rm -rf node_modules/{.bin,.pnpm} node_modules/*.yaml
148148
working-directory: ${{ env.EXAMPLE_APP_DIR }}
149149
- name: Upload example app
150-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
150+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
151151
with:
152152
name: ${{ env.example_app_artifact_name }}
153153
path: |

.github/workflows/reusable-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Run unit tests
2121
run: cd .ci && make unit-test-libs
2222
- name: Upload coverage report
23-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
23+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
2424
if: failure() || success()
2525
with:
2626
name: ngx-meta-unit-test${{ env.COVERAGE_REPORT_ARTIFACT_NAME_SUFFIX }}
@@ -39,7 +39,7 @@ jobs:
3939
- name: Run unit tests
4040
run: pnpm run test:unit:schematics:coverage
4141
- name: Upload coverage report
42-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
42+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
4343
if: failure() || success()
4444
with:
4545
name: unit-test-schematics${{ env.COVERAGE_REPORT_ARTIFACT_NAME_SUFFIX }}

0 commit comments

Comments
 (0)