From 319f4eefb596a8f17b1d5297792fbc57d8de7580 Mon Sep 17 00:00:00 2001 From: stovecooks Date: Tue, 23 Jun 2026 11:40:51 +0200 Subject: [PATCH 1/5] Update workflows to use Node24 --- .github/workflows/deploy.yml | 2 +- .github/workflows/pr-preview.yml | 2 +- .github/workflows/revert-contributors-change.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4b14a5e..1b856bf 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v 4.2.2 + uses: actions/checkout@v6 # v6 - name: Generate contributors list run: bash scripts/generate-cards.sh diff --git a/.github/workflows/pr-preview.yml b/.github/workflows/pr-preview.yml index 7d06268..bcc97ec 100644 --- a/.github/workflows/pr-preview.yml +++ b/.github/workflows/pr-preview.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v 4.2.2 + uses: actions/checkout@v6 # v6 - name: Generate contributors list run: bash scripts/generate-cards.sh - name: Deploy preview diff --git a/.github/workflows/revert-contributors-change.yml b/.github/workflows/revert-contributors-change.yml index 232cf23..fb1f242 100644 --- a/.github/workflows/revert-contributors-change.yml +++ b/.github/workflows/revert-contributors-change.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} repository: ${{ github.event.pull_request.head.repo.full_name }} From f4950c12dad766bc2c6a2e8d1e781c1357cda183 Mon Sep 17 00:00:00 2001 From: "W3bm@steR" Date: Tue, 23 Jun 2026 12:14:00 +0200 Subject: [PATCH 2/5] Add W3bmaster's Contributor card --- contributors/W3bmasteR.html | 59 +++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 contributors/W3bmasteR.html diff --git a/contributors/W3bmasteR.html b/contributors/W3bmasteR.html new file mode 100644 index 0000000..55fdcb9 --- /dev/null +++ b/contributors/W3bmasteR.html @@ -0,0 +1,59 @@ +
+

W3bmasteR

+

IT Hobbyist and Enthusiast

+

Programming languages I use

+
+
+ Python +
+
+ JavaScript +
+
C#
+
+ Angular +
+
+ React +
+
+ Node.js +
+
+ HTML +
+
+ +

Tools I use

+
+ + +
+ GitHub + GitHub +
+
+
+ From bd47e03a287ef583ac417bbe388adc713b1da674 Mon Sep 17 00:00:00 2001 From: stovecooks Date: Tue, 23 Jun 2026 11:40:51 +0200 Subject: [PATCH 3/5] Update workflows to use Node24 --- .github/workflows/deploy.yml | 2 +- .github/workflows/pr-preview.yml | 39 ++++++++++++------- .../workflows/revert-contributors-change.yml | 2 +- 3 files changed, 26 insertions(+), 17 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4b14a5e..1b856bf 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v 4.2.2 + uses: actions/checkout@v6 # v6 - name: Generate contributors list run: bash scripts/generate-cards.sh diff --git a/.github/workflows/pr-preview.yml b/.github/workflows/pr-preview.yml index 7d06268..e1aa926 100644 --- a/.github/workflows/pr-preview.yml +++ b/.github/workflows/pr-preview.yml @@ -1,22 +1,31 @@ name: Deploy PR previews on: - pull_request: - types: - - opened - - reopened - - synchronize - - closed + pull_request: + types: + - opened + - reopened + - synchronize + - closed concurrency: preview-${{ github.ref }} jobs: - deploy-preview: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v 4.2.2 - - name: Generate contributors list - run: bash scripts/generate-cards.sh - - name: Deploy preview - uses: rossjrw/pr-preview-action@df22037db54ab6ee34d3c1e2b8810ac040a530c6 # v 1.6.0 + deploy-preview: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install and Build + if: github.event.action != 'closed' # We don't need the build if we know the preview will be removed + run: | + npm install + npm run build + + - name: Deploy preview + uses: rossjrw/pr-preview-action@v1 + with: + source-dir: . + preview-branch: main + qr-code: true \ No newline at end of file diff --git a/.github/workflows/revert-contributors-change.yml b/.github/workflows/revert-contributors-change.yml index 232cf23..fb1f242 100644 --- a/.github/workflows/revert-contributors-change.yml +++ b/.github/workflows/revert-contributors-change.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} repository: ${{ github.event.pull_request.head.repo.full_name }} From 2327712b78556d537f84c091c56ed24ec54cbfb8 Mon Sep 17 00:00:00 2001 From: stovecooks Date: Tue, 23 Jun 2026 11:40:51 +0200 Subject: [PATCH 4/5] Update workflows to use Node24 --- .github/workflows/deploy.yml | 2 +- .github/workflows/pr-preview.yml | 33 ++++++++++--------- .../workflows/revert-contributors-change.yml | 2 +- 3 files changed, 20 insertions(+), 17 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4b14a5e..1b856bf 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v 4.2.2 + uses: actions/checkout@v6 # v6 - name: Generate contributors list run: bash scripts/generate-cards.sh diff --git a/.github/workflows/pr-preview.yml b/.github/workflows/pr-preview.yml index 7d06268..e3391a9 100644 --- a/.github/workflows/pr-preview.yml +++ b/.github/workflows/pr-preview.yml @@ -1,22 +1,25 @@ name: Deploy PR previews on: - pull_request: - types: - - opened - - reopened - - synchronize - - closed + pull_request: + types: + - opened + - reopened + - synchronize + - closed concurrency: preview-${{ github.ref }} jobs: - deploy-preview: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v 4.2.2 - - name: Generate contributors list - run: bash scripts/generate-cards.sh - - name: Deploy preview - uses: rossjrw/pr-preview-action@df22037db54ab6ee34d3c1e2b8810ac040a530c6 # v 1.6.0 + deploy-preview: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Deploy preview + uses: rossjrw/pr-preview-action@v1 + with: + source-dir: . + preview-branch: main + qr-code: true \ No newline at end of file diff --git a/.github/workflows/revert-contributors-change.yml b/.github/workflows/revert-contributors-change.yml index 232cf23..fb1f242 100644 --- a/.github/workflows/revert-contributors-change.yml +++ b/.github/workflows/revert-contributors-change.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} repository: ${{ github.event.pull_request.head.repo.full_name }} From 5ed0197b778b6083db0b8cafdbb110079a21b85f Mon Sep 17 00:00:00 2001 From: stovecooks Date: Tue, 23 Jun 2026 11:40:51 +0200 Subject: [PATCH 5/5] Update workflows to use Node24 --- .github/workflows/deploy.yml | 2 +- .github/workflows/pr-preview.yml | 37 +++++++++++-------- .../workflows/revert-contributors-change.yml | 2 +- 3 files changed, 24 insertions(+), 17 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4b14a5e..1b856bf 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v 4.2.2 + uses: actions/checkout@v6 # v6 - name: Generate contributors list run: bash scripts/generate-cards.sh diff --git a/.github/workflows/pr-preview.yml b/.github/workflows/pr-preview.yml index 7d06268..b9912a1 100644 --- a/.github/workflows/pr-preview.yml +++ b/.github/workflows/pr-preview.yml @@ -1,22 +1,29 @@ name: Deploy PR previews on: - pull_request: - types: - - opened - - reopened - - synchronize - - closed + pull_request: + types: + - opened + - reopened + - synchronize + - closed + +permissions: + contents: write + pull-requests: write concurrency: preview-${{ github.ref }} jobs: - deploy-preview: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v 4.2.2 - - name: Generate contributors list - run: bash scripts/generate-cards.sh - - name: Deploy preview - uses: rossjrw/pr-preview-action@df22037db54ab6ee34d3c1e2b8810ac040a530c6 # v 1.6.0 + deploy-preview: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Deploy preview + uses: rossjrw/pr-preview-action@v1 + with: + source-dir: . + preview-branch: main + qr-code: true \ No newline at end of file diff --git a/.github/workflows/revert-contributors-change.yml b/.github/workflows/revert-contributors-change.yml index 232cf23..fb1f242 100644 --- a/.github/workflows/revert-contributors-change.yml +++ b/.github/workflows/revert-contributors-change.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} repository: ${{ github.event.pull_request.head.repo.full_name }}