Skip to content

Commit

Permalink
Merge pull request #90312 from rettinghaus/update-action
Browse files Browse the repository at this point in the history
Bump actions to version 3

Manually merged this PR because bors can't merge PRs that change GitHub actions.
  • Loading branch information
jlinder authored Nov 4, 2022
2 parents e74dbea + faa7072 commit e01f162
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bincheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: sudo apt-get update && sudo apt-get install -y qemu-system-x86
- run: cd build/release/bincheck && ./test-linux ${{ github.ref_name }} ${{ github.sha }}

darwin:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: cd build/release/bincheck && ./test-macos ${{ github.ref_name }} ${{ github.sha }}

windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: cd build/release/bincheck && bash test-windows ${{ github.ref_name }} ${{ github.sha }}
4 changes: 2 additions & 2 deletions .github/workflows/pr-epic-issue-ref-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Bazel cache
id: bazel-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.cache/bazel
Expand Down

0 comments on commit e01f162

Please sign in to comment.