Skip to content

Commit

Permalink
Try updating Github action to v3, since v2 was long-since deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilMiller authored and mattw-nws committed Aug 8, 2023
1 parent 7645eb5 commit ef8e201
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Example_model_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Build the NGEN image
run: docker build . --file ./docker/CENTOS_NGEN_RUN.dockerfile --tag localbuild/ngen:latest
- name: Run the NGEN model on example data
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@v2
- uses: actions/checkout@v3

- 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@v2
uses: actions/checkout@v3
with:
ref: gh-pages
clean: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/module_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,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@v2
- uses: actions/checkout@v3

- name: Build Surfacebmi
id: submod_build_1
Expand Down Expand Up @@ -97,7 +97,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@v2
- uses: actions/checkout@v3

- name: Build Ngen
uses: ./.github/actions/ngen-build
Expand Down
18 changes: 9 additions & 9 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@v2
uses: actions/checkout@v3

- 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@v2
- uses: actions/checkout@v3

- name: Build PET Submodule
id: submod_build_5
Expand Down Expand Up @@ -100,7 +100,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@v2
- uses: actions/checkout@v3

- name: Build Unit Tests
uses: ./.github/actions/ngen-build
Expand Down Expand Up @@ -129,7 +129,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@v2
- uses: actions/checkout@v3

#make sure cxx bmi is initialized/ready
- uses: ./.github/actions/ngen-submod-build
Expand Down Expand Up @@ -176,7 +176,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@v2
- uses: actions/checkout@v3

- name: Build Submodules
id: submod_build
Expand Down Expand Up @@ -221,7 +221,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@v2
- uses: actions/checkout@v3

- name: Build Submodules
id: submod_build_1
Expand Down Expand Up @@ -275,7 +275,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@v2
- uses: actions/checkout@v3

- name: Build Unit Tests
uses: ./.github/actions/ngen-build
Expand Down Expand Up @@ -309,7 +309,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@v2
- uses: actions/checkout@v3

- name: Build Submodules
id: submod_build_1
Expand Down Expand Up @@ -383,7 +383,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@v2
# - uses: actions/checkout@v3
#
# - name: git submodule
# run: git submodule update --init --recursive -- test/googletest
Expand Down

0 comments on commit ef8e201

Please sign in to comment.