Skip to content

Commit

Permalink
Pin GitHub Actions runners to a specific version (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom authored Nov 14, 2023
1 parent 29a613f commit 2cb618a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ on: [push, pull_request]
jobs:
validation:
name: "Validation"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
gradle:
name: "Build"
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-22.04, macos-12, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 2cb618a

Please sign in to comment.