Skip to content

Commit 369978a

Browse files
build(deps): update cicd
1 parent 49d5f4a commit 369978a

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ runs:
66
- name: Setup pnpm
77
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
88
- name: Setup Node.js
9-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
9+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
1010
with:
1111
cache: 'pnpm'
1212
node-version-file: '.node-version'

.github/workflows/reusable-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
timeout-minutes: 5
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
12+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1313
with:
1414
#👇 To generate release information
1515
fetch-depth: 0

.github/workflows/reusable-deploy-cloudflare-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Download built app
26-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
26+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
2727
with:
2828
name: build
2929
# This whole step was created to mitigate an error: Cloudflare Pages deploying failed as PR branch was removed
@@ -32,7 +32,7 @@ jobs:
3232
- name: Check if reference exists
3333
if: github.event_name == 'pull_request'
3434
id: ref-exists
35-
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
35+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
3636
with:
3737
script: |
3838
const ref = `heads/${context.payload.pull_request.head.ref}`

.github/workflows/reusable-deploy-github-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
timeout-minutes: 5
2929
steps:
3030
- name: Download built app
31-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
31+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
3232
with:
3333
name: build
3434
- name: Setup Pages
3535
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
3636
- name: Upload artifact
37-
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
37+
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4
3838
with:
3939
path: '.'
4040
- name: Deploy to GitHub Pages

.github/workflows/reusable-lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
timeout-minutes: 5
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
12+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1313
- name: Setup
1414
uses: ./.github/actions/setup
1515
# 👇 Needed for typed linting
@@ -26,7 +26,7 @@ jobs:
2626
timeout-minutes: 5
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3030
- name: Run GitHub Actions linter
3131
uses: docker://rhysd/actionlint:latest@sha256:887a259a5a534f3c4f36cb02dca341673c6089431057242cdc931e9f133147e9
3232
with:
@@ -41,7 +41,7 @@ jobs:
4141
# https://github.com/actions/checkout/issues/520#issuecomment-1167205721
4242
run: echo "pr_commits_plus_one=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> "${GITHUB_ENV}"
4343
- name: Checkout
44-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
44+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4545
with:
4646
fetch-depth: ${{ env.pr_commits_plus_one }}
4747
- name: Setup
@@ -63,7 +63,7 @@ jobs:
6363
timeout-minutes: 5
6464
steps:
6565
- name: Checkout
66-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
66+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
6767
- name: Setup
6868
uses: ./.github/actions/setup
6969
- name: Run

.github/workflows/reusable-performance.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
timeout-minutes: 5
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
25+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2626
- name: Setup
2727
uses: ./.github/actions/setup
2828
- name: Download built app
29-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
29+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
3030
with:
3131
name: build
3232
path: ${{ env.BROWSER_DIST_DIR }}
@@ -43,11 +43,11 @@ jobs:
4343
timeout-minutes: 5
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
46+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4747
- name: Setup
4848
uses: ./.github/actions/setup
4949
- name: Download built app
50-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
50+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
5151
with:
5252
name: build
5353
path: ${{ env.BROWSER_DIST_DIR }}

.github/workflows/reusable-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
timeout-minutes: 15
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
23+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2424
with:
2525
fetch-depth: 0
2626
- name: Configure Git
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup
3131
uses: ./.github/actions/setup
3232
- name: Download built app
33-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
33+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
3434
with:
3535
name: build
3636
path: dist/@davidlj95/website/browser

.github/workflows/reusable-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
timeout-minutes: 5
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
12+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1313
- name: Setup
1414
uses: ./.github/actions/setup
1515
- name: Format check

.github/workflows/reusable-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 5
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
20+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2121
- name: Setup
2222
uses: ./.github/actions/setup
2323
- name: Generate app data
@@ -42,7 +42,7 @@ jobs:
4242
timeout-minutes: 5
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
45+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4646
# 👇 Needed in order for the Cypress GitHub Action to work
4747
# Action uses Cypress Module API to work & later report the result in check summary
4848
# https://docs.cypress.io/guides/guides/module-api
@@ -100,11 +100,11 @@ jobs:
100100
timeout-minutes: 5
101101
steps:
102102
- name: Checkout
103-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
103+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
104104
- name: Setup
105105
uses: ./.github/actions/setup
106106
- name: Download code coverage reports
107-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
107+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
108108
with:
109109
pattern: ${{ env.COVERAGE_ARTIFACT_NAME_PREFIX }}*
110110
path: ${{ env.COVERAGE_DIR }}

0 commit comments

Comments
 (0)