Skip to content

Commit

Permalink
CI: GitHub actions upgrade (#772), closes #771
Browse files Browse the repository at this point in the history
* Upgraded checkout@v3 to checkout@v4

* Upgrade cache@v3 to cache@v4
  • Loading branch information
joshkotrous authored Mar 22, 2024
1 parent c0b6216 commit 4e8bb7b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
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

0 comments on commit 4e8bb7b

Please sign in to comment.