Skip to content

Commit

Permalink
upgrade deprecated github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vergoh committed Apr 17, 2024
1 parent 03ca79a commit 914fb69
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
CFLAGS: "${{ matrix.compiler == 'gcc' && '-Wall -Wextra -O2' || '-Weverything -Wno-padded' }}"
CPARAMS: "${{ matrix.compiler == 'gcc' && '--enable-werror' || ' ' }}"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: dependencies
run: sudo make -f .github/Makefile.CI dependencies_ubuntu
Expand All @@ -46,7 +46,7 @@ jobs:
ASAN_OPTIONS: strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
UBSAN_OPTIONS: print_stacktrace=1:print_summary=1:halt_on_error=1
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: dependencies
run: sudo make -f .github/Makefile.CI dependencies_ubuntu
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
CC: clang
CFLAGS: '-Wall -Wextra'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: dependencies
run: sudo make -f .github/Makefile.CI dependencies_ubuntu_analyzer
Expand All @@ -93,7 +93,7 @@ jobs:
CC: clang
CFLAGS: '-Weverything -Wno-padded -Wno-poison-system-directories'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: dependencies
run: make -f .github/Makefile.CI dependencies_macos
Expand All @@ -115,7 +115,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check spelling
uses: crate-ci/typos@master
Expand Down

0 comments on commit 914fb69

Please sign in to comment.