Skip to content

Commit

Permalink
Update actions/checkout action to v4 (#269)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Feb 13, 2024
1 parent cda0afb commit de1438c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Prepare release
run: .github/workflows/release_prep.sh > release_notes.txt
- name: Release
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
contents: read # For repo checkout
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Trunk Check
uses: trunk-io/trunk-action@v1
test:
Expand All @@ -41,7 +41,7 @@ jobs:
- if: startsWith(matrix.os, 'ubuntu')
name: Install APT packages
run: sudo apt-get -y install libtinfo5
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
env:
USE_BAZEL_VERSION: ${{ matrix.bazel_version }}
Expand All @@ -59,7 +59,7 @@ jobs:
- if: startsWith(matrix.os, 'ubuntu')
name: Install APT packages
run: sudo apt-get -y install libtinfo5
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
env:
USE_BAZEL_VERSION: ${{ matrix.bazel_version }}
Expand All @@ -82,29 +82,29 @@ jobs:
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
run: tests/scripts/${{ matrix.script }}_test.sh
xcompile_test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
run: tests/scripts/run_xcompile_tests.sh
abs_paths_test:
runs-on: ubuntu-latest
steps:
- name: Install APT packages
run: sudo apt-get -y install libtinfo5
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
run: tests/scripts/run_tests.sh -t @llvm_toolchain_with_absolute_paths//:cc-toolchain-x86_64-linux
sys_paths_test:
runs-on: ubuntu-latest
steps:
- name: Install APT packages
run: sudo apt-get -y install libtinfo5
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download and Extract LLVM distribution
env:
release: llvmorg-16.0.0
Expand Down

0 comments on commit de1438c

Please sign in to comment.