Skip to content

Commit

Permalink
Reverting to Ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Jan 5, 2025
1 parent 31883e5 commit 8548fbe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
docs:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
to: /${{ github.ref_name }}/docs

guide:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ jobs:
fail-fast: false
matrix:
version: ["stable", "1.80.0"]
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
os: ["ubuntu-22.04", "windows-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

-
name: Free disk space
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-22.04'
run: |
sudo docker rmi $(docker image ls -aq) || true
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL || true
# Sourced from https://github.com/gfx-rs/wgpu/blob/trunk/.github/workflows/ci.yml
- name: install vulkan sdk
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-22.04'
shell: bash
run: |
set -e
Expand All @@ -39,7 +39,7 @@ jobs:
# Sourced from https://github.com/gfx-rs/wgpu/blob/trunk/.github/workflows/ci.yml
- name: install mesa
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-22.04'
shell: bash
run: |
set -e
Expand Down

0 comments on commit 8548fbe

Please sign in to comment.