Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/on_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Build on Linux with GCC
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6.0.1
- name: Install Dependencies
run: |
# enable optional tests of interacting with boost types
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
name: Build on Linux with GCC, C++17
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6.0.1
- name: Configure
run: |
set -x
Expand All @@ -63,7 +63,7 @@ jobs:
name: Build on Linux with GCC+ASAN+UBSAN
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6.0.1
- name: Configure
run: |
set -x
Expand All @@ -83,7 +83,7 @@ jobs:
name: Build on Linux with GCC+TSAN
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6.0.1
- name: Configure
run: |
set -x
Expand All @@ -103,7 +103,7 @@ jobs:
name: Build on Linux with Clang, C++17
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6.0.1
- name: Install Dependencies
run: |
sudo apt install -y clang lld
Expand All @@ -128,7 +128,7 @@ jobs:
name: Build on Linux with Clang+Tidy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6.0.1
- name: Install Dependencies
run: |
sudo apt install -y clang clang-tidy lld
Expand All @@ -154,7 +154,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6.0.1
with:
persist-credentials: false

Expand All @@ -176,7 +176,7 @@ jobs:
name: Build on macOS with Clang
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6.0.1
- name: Build
run: |
mkdir Release
Expand All @@ -192,7 +192,7 @@ jobs:
name: Build on Windows with MSVC
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6.0.1
- name: Configure
run: |
mkdir Release
Expand All @@ -210,7 +210,7 @@ jobs:
name: Build on Windows with MinGW
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6.0.1
- name: Configure
run: |
mkdir Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on_push_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6.0.1
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
persist-credentials: false

Expand Down
Loading