Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:

steps:
- name: Checkout current repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
show-progress: false

- name: Checkout performance data repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ChilliCream/graphql-platform-performance-data
token: ${{ secrets.PERFORMANCE_DATA_TOKEN }}
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:

- name: Comment PR with performance report
if: github.event_name == 'pull_request'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
});

- name: Upload performance data as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: fusion-gateway-performance-data
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
show-progress: false

Expand Down
40 changes: 20 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
src_changes: ${{ steps.check-src.outputs.src_changes }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 2
show-progress: false
Expand Down Expand Up @@ -63,18 +63,18 @@ jobs:
needs: check-changes
if: needs.check-changes.outputs.website_changes == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
name: Check out the code
with:
show-progress: false

- name: Install Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24

- name: Install cspell
run: npm install -g cspell
run: npm install -g cspell@9.4.0

- name: run cspell
run: cspell --config ./cspell.json "website/src/**/*.md" --no-progress --no-cache
Expand All @@ -83,15 +83,15 @@ jobs:
name: "Markdown linting"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
name: Check out the code
with:
show-progress: false
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
name: Setup node
with:
node-version: 22
- run: npm install -g markdownlint-cli2@0.19.0
node-version: 24
- run: npm install -g markdownlint-cli2@0.20.0
name: Install markdownlint-cli2
- run: markdownlint-cli2 "*.md" "website/src/**/*.md"
name: run Markdownlint
Expand All @@ -103,14 +103,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
show-progress: false

- name: Install Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: "yarn"
cache-dependency-path: "website/yarn.lock"

Expand Down Expand Up @@ -143,12 +143,12 @@ jobs:

steps:
- name: Checkout to repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
show-progress: false

- name: Install .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.x

Expand All @@ -173,12 +173,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
show-progress: false

- name: Install .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.x
Expand Down Expand Up @@ -217,13 +217,13 @@ jobs:
CI_BUILD: true

- name: Upload Test Results as Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-results-${{ matrix.name }}
path: ${{ matrix.directoryPath }}/TestResults/*.trx

- name: Upload Coverage File as Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-${{ matrix.name }}
# The * matches a single directory that is named with a GUID.
Expand All @@ -232,7 +232,7 @@ jobs:

- name: Upload mismatch files as Artifact
if: steps.run-tests.outcome == 'failure'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: mismatch-files-${{ matrix.name }}
path: ${{ matrix.directoryPath }}/**/__mismatch__/*
Expand All @@ -243,7 +243,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all coverage artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: ./output/download
pattern: coverage-*
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:

steps:
- name: Checkout to repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
show-progress: false

- name: Install .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.x
Expand All @@ -54,12 +54,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
show-progress: false

- name: Install .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.x
Expand Down Expand Up @@ -94,13 +94,13 @@ jobs:
CI_BUILD: true

- name: Upload Test Results as Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-results-${{ matrix.name }}
path: ${{ matrix.directoryPath }}/TestResults/*.trx

- name: Upload Coverage File as Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-${{ matrix.name }}
# The * matches a single directory that is named with a GUID.
Expand All @@ -109,7 +109,7 @@ jobs:

- name: Upload mismatch files as Artifact
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: mismatch-files-${{ matrix.name }}
path: ${{ matrix.directoryPath }}/**/__mismatch__/*
Expand All @@ -126,7 +126,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all coverage artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: ./output/download
pattern: coverage-*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ jobs:
name: Apply Labels
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
- uses: actions/labeler@v6
6 changes: 3 additions & 3 deletions .github/workflows/publish-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
show-progress: false

Expand All @@ -30,9 +30,9 @@ jobs:
- run: echo ${{ secrets.CONTAINER_REG_URL }}

- name: Install Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: "yarn"
cache-dependency-path: "website/yarn.lock"

Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:

steps:
- name: 📦 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
show-progress: false

- name: 🛠 Install .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.x
Expand Down Expand Up @@ -99,10 +99,10 @@ jobs:

steps:
- name: 📦 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: 🛠 Install .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.x

Expand Down Expand Up @@ -168,8 +168,8 @@ jobs:
- name: 🖋️ Setup signing resources (macOS)
if: runner.os == 'macOS'
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.APPLE_DEVELOPER_CERTFICATE_BASE64 }}
P12_PASSWORD: ${{ secrets.APPLE_DEVELOPER_CERTFICATE_PASSWORD }}
BUILD_CERTIFICATE_BASE64: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_BASE64 }}
P12_PASSWORD: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }}
KEYCHAIN_PASSWORD: ${{ secrets.TEMPORARY_KEYCHAIN_PASSWORD }}
run: |
# create variables
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
security delete-keychain $RUNNER_TEMP/app-signing.keychain-db

- name: 📤 Upload zipped binary as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: nitro-${{ matrix.rid }}
path: nitro-${{ matrix.rid }}.zip
Expand All @@ -276,20 +276,20 @@ jobs:

steps:
- name: 📦 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: 🧰 Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "22.x"
node-version: 24
registry-url: ${{ vars.NPM_REGISTRY_URL }}
scope: "@chillicream"

- name: 🧰 Enable corepack
run: corepack enable

- name: 📥 Download all zipped nitro binaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
pattern: nitro-*
merge-multiple: true
Expand Down Expand Up @@ -350,7 +350,7 @@ jobs:
shell: bash

- name: 📤 Upload tarball as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: chillicream-nitro-${{ env.GIT_TAG }}.tgz
path: src/Nitro/CommandLine/src/chillicream-nitro/chillicream-nitro-${{ env.GIT_TAG }}.tgz
Expand All @@ -370,7 +370,7 @@ jobs:

steps:
- name: 📥 Checkout main repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -428,7 +428,7 @@ jobs:
EOF

- name: 📥 Checkout homebrew repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ChilliCream/homebrew-tools
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
Expand Down
Loading
Loading