Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# Prepare environment and build the plugin
build:
name: Build
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
version: ${{ steps.properties.outputs.version }}
changelog: ${{ steps.properties.outputs.changelog }}
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
test:
name: Test
needs: [ build ]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:

# Check out the current repository
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
inspectCode:
name: Inspect code
needs: [ build ]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write
checks: write
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
verify:
name: Verify plugin
needs: [ build ]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:

# Free GitHub Actions Environment Disk Space
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
name: Release draft
if: github.event_name != 'pull_request'
needs: [ build, test, inspectCode, verify ]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Prepare and publish the plugin to JetBrains Marketplace repository
release:
name: Publish Plugin
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write
pull-requests: write
Expand Down
Loading