Skip to content

Commit

Permalink
actions: update to latest provided versions
Browse files Browse the repository at this point in the history
- checkout@v4: uses default runtime node20 rather than node16, avoiding
      a deprecation warning.
- macos-12: github actions deprecated macos-11 on 2024-06-28 [1]

[1] https://github.blog/changelog/2024-05-20-actions-upcoming-changes-to-github-hosted-macos-runners/#macos-11-deprecation-and-removal
  • Loading branch information
gperciva authored and cperciva committed Jul 23, 2024
1 parent 2b4f337 commit 6cec2c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: sudo apt-get install --no-install-recommends
valgrind autoconf-archive
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run autoreconf
run:
autoreconf -i
Expand Down Expand Up @@ -84,10 +84,10 @@ jobs:
run: test -z "$(git status --porcelain=v1)"
macOS:
name: macOS
runs-on: macOS-11
runs-on: macOS-12
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install software
run: brew install automake
- name: Run autoreconf
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run autoreconf
run: autoreconf -i
- name: Configure with the default compiler
Expand Down

0 comments on commit 6cec2c2

Please sign in to comment.