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
4 changes: 2 additions & 2 deletions .github/workflows/build-admb-and-ss3-from-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,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@v5
- uses: actions/checkout@v6

- name: Update Homebrew
if: matrix.config.os == 'macos-15-intel'
Expand All @@ -47,7 +47,7 @@ jobs:

# Checkout ADMB repository
- name: Checkout admb
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: admb-project/admb
path: admb
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ss3-warnings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout ss3 repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Update Ubuntu packages
run: sudo apt-get update
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-ss3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: checkout ss3 repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: 'nmfs-ost/ss3-source-code'

# Checkout ADMB repository
- name: Checkout admb for macos-15-intel build
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: admb-project/admb
path: admb
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-ss3-bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:

steps:
- name: Checkout ss3 repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Checkout test models repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: 'nmfs-ost/ss3-test-models'
path: test-models-repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-ss3-mcmc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:

steps:
- name: Checkout ss3 repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Checkout models repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: 'nmfs-ost/ss3-test-models'
path: test-models-repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-ss3-no-est.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout ss3 repo
uses: actions/checkout@v5
uses: actions/checkout@v6

# - name: Get last compiled version of SS; alternative to compiling in same wkflow
# uses: dawidd6/action-download-artifact@v2
Expand All @@ -39,7 +39,7 @@ jobs:
# path: ss_linux

- name: Checkout models repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: 'nmfs-ost/ss3-test-models'
path: test-models-repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-ss3-with-est.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:

steps:
- name: Checkout ss3 repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Checkout models repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: 'nmfs-ost/ss3-test-models'
path: test-models-repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-r4ss-with-ss3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:

steps:
- name: Checkout ss3 repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Checkout models repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: 'nmfs-ost/ss3-test-models'
path: test-models-repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-simple-with-ss3-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

steps:
- name: Checkout SS3 Test Models
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: nmfs-ost/ss3-test-models
path: ss3-test-models
Expand Down
Loading