Skip to content

Commit

Permalink
Update Github actions workflows to use the latests versions actions
Browse files Browse the repository at this point in the history
Related to #21

Update Github actions workflows to use the latest versions of actions.

* Update `actions/checkout` to version `v4.1.7` in `.github/workflows/build.yml`.
* Update `actions/upload-artifact` to version `v4.3.4` in `.github/workflows/build.yml`.
* Update `MarkusJx/install-boost` to version `v2.4.5` in `.github/workflows/build.yml`.

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/lunarserge/Numero/issues/21?shareId=XXXX-XXXX-XXXX-XXXX).
  • Loading branch information
dbabokin committed Jul 29, 2024
1 parent 99d05f6 commit e3dbe2d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v4.1.7

- name: Setup Environment
id: install-boost
uses: MarkusJx/install-boost@v2.3.1
uses: MarkusJx/install-boost@v2.4.5
with:
boost_version: 1.79.0
platform_version: 2022
Expand All @@ -40,7 +40,7 @@ jobs:
ctest
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.0
uses: actions/upload-artifact@v4.3.4
with:
name: win-numero
path: build/${{env.BUILD_TYPE}}/numero.exe
Expand All @@ -49,11 +49,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v4.1.7

- name: Setup Environment
id: install-boost
uses: MarkusJx/install-boost@v2.3.1
uses: MarkusJx/install-boost@v2.4.5
with:
boost_version: 1.79.0
platform_version: 20.04
Expand All @@ -71,7 +71,7 @@ jobs:
ctest
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.0
uses: actions/upload-artifact@v4.3.4
with:
name: linux-numero
path: build/numero
Expand All @@ -80,11 +80,11 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v4.1.7

- name: Setup Environment
id: install-boost
uses: MarkusJx/install-boost@v2.3.1
uses: MarkusJx/install-boost@v2.4.5
with:
boost_version: 1.79.0
platform_version: 11
Expand All @@ -102,7 +102,7 @@ jobs:
ctest
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.0
uses: actions/upload-artifact@v4.3.4
with:
name: mac-numero
path: build/numero

0 comments on commit e3dbe2d

Please sign in to comment.