Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub actions upgrade #772

Merged
merged 2 commits into from
Mar 22, 2024
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
2 changes: 1 addition & 1 deletion .github/actions/ngen-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ runs:

- name: Cache Boost Dependency
id: cache-boost-dep
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: boost_1_79_0
key: unix-boost-dep
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Make sure initial ownership is correct
run: sudo chown -R runner:docker docs/
Expand All @@ -35,7 +35,7 @@ jobs:
run: sudo chown -R runner:docker docs/

- name: Switch to gh-pages
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: gh-pages
clean: false
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test_and_validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout the commit
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build Unit Tests
uses: ./.github/actions/ngen-build
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build PET Tests
uses: ./.github/actions/ngen-build
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build Unit Tests
uses: ./.github/actions/ngen-build
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

#make sure cxx bmi is initialized/ready
- uses: ./.github/actions/ngen-submod-build
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build Unit Tests
uses: ./.github/actions/ngen-build
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build Unit Tests
uses: ./.github/actions/ngen-build
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out repository under $GITHUB_WORKSPACE, so job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build Unit Tests
uses: ./.github/actions/ngen-build
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build Unit Tests
uses: ./.github/actions/ngen-build
Expand Down
Loading