Skip to content

Commit

Permalink
Update GitHub CI workflow actions (#13)
Browse files Browse the repository at this point in the history
* Update OSes and action versions

* Fix build error
  • Loading branch information
borisskert authored Nov 29, 2024
1 parent 733e6be commit dc0de9c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ on:

jobs:
build-linux:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build
working-directory: ./build
Expand All @@ -26,11 +26,11 @@ jobs:
run: ./cpp_katas_test --output=color

build-macos:
runs-on: macos-11
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build
working-directory: ./build
Expand All @@ -43,11 +43,11 @@ jobs:
run: ./cpp_katas_test --output=color

build-windows:
runs-on: windows-2019
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install needed software
run: |
Expand Down
1 change: 1 addition & 0 deletions src/simple_assembler_interpreter/assembler.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <stdexcept>
#include <string>
#include <unordered_map>
#include <utility>
Expand Down

0 comments on commit dc0de9c

Please sign in to comment.