Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/dev-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: always() && github.repository == 'SerenityOS/serenity'

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Label pull request
uses: actions/github-script@v8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lagom-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
# Pull requests can trail behind `master` and can cause breakage if merging before running the CI checks on an updated branch.
# Luckily, GitHub creates and maintains a merge branch that is updated whenever the target or source branch is modified. By
# checking this branch out, we gain a stabler `master` at the cost of reproducibility.
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ github.event_name != 'pull_request' }}

- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ github.event_name == 'pull_request' }}
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-24.04
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: '2.13'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/serenity-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
# Pull requests can trail behind `master` and can cause breakage if merging before running the CI checks on an updated branch.
# Luckily, GitHub creates and maintains a merge branch that is updated whenever the target or source branch is modified. By
# checking this branch out, we gain a stabler `master` at the cost of reproducibility.
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ github.event_name != 'pull_request' }}

- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ github.event_name == 'pull_request' }}
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/social-media.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '14'
Expand All @@ -28,7 +28,7 @@ jobs:
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '14'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
fail-fast: false
steps:
- name: Checkout SerenityOS/serenity
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Checkout SerenityOS/libjs-data libjs-wasm
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: SerenityOS/libjs-data
path: libjs-data
Expand Down
Loading