mirror of
https://github.com/swift-server/async-http-client.git
synced 2026-06-02 07:37:34 +00:00
f55968148d
Motivation * Following [GitHub's announcement](https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/), Node 20 is being deprecated and runners will begin using Node 24 by default starting March 4th, 2026. Node 20 will reach end-of-life in April 2026. Modifications * Upgrade GitHub Actions to their latest versions to ensure compatibility with Node 24. * Replace `actions/checkout@v4` with `actions/checkout@v6` in all workflow files. Result * Workflow files reference `actions/checkout@v6`.
22 lines
510 B
YAML
22 lines
510 B
YAML
name: PR label
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
types: [labeled, unlabeled, opened, reopened, synchronize]
|
|
|
|
jobs:
|
|
semver-label-check:
|
|
name: Semantic version label check
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 1
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
with:
|
|
persist-credentials: false
|
|
- name: Check for Semantic Version label
|
|
uses: apple/swift-nio/.github/actions/pull_request_semver_label_checker@main
|