Skip to content

Commit 67bb292

Browse files
committed
Update other GitHub Actions
1 parent 57778b7 commit 67bb292

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/run-experiment.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [main, master]
3+
branches: [main, master, update/github-actions]
44

55
name: run-experiment.yaml
66
permissions: read-all
@@ -13,7 +13,7 @@ jobs:
1313
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1414
steps:
1515
- name: Check out repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

1818
- name: Set up NetLogo
1919
uses: danielvartan/logoactions/setup-netlogo@v1
@@ -125,7 +125,7 @@ jobs:
125125
shell: bash
126126

127127
- name: Upload artifacts
128-
uses: actions/upload-artifact@v4
128+
uses: actions/upload-artifact@v7
129129
with:
130130
name: experiments-output
131131
path: ${{ steps.artifacts-dir.outputs.path }}

.github/workflows/run-logolink.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [main, master]
3+
branches: [main, master, update/github-actions]
44

55
name: run-logolink.yaml
66
permissions: read-all
@@ -16,7 +16,7 @@ jobs:
1616
pages: write
1717
steps:
1818
- name: Check out repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Set up NetLogo
2222
uses: danielvartan/logoactions/setup-netlogo@v1

.github/workflows/test-check-netlogo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [main, master]
3+
branches: [main, master, update/github-actions]
44

55
name: "check-netlogo" # Do not change!
66
permissions: read-all
@@ -21,7 +21,7 @@ jobs:
2121
permissions: read-all
2222
steps:
2323
- name: Check out repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525

2626
- name: Set up NetLogo
2727
uses: danielvartan/netlogo-actions/setup-netlogo@v1

.github/workflows/test-setup-netlogo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [main, master]
3+
branches: [main, master, update/github-actions]
44

55
name: "setup-netlogo" # Do not change!
66
permissions: read-all
@@ -23,7 +23,7 @@ jobs:
2323
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
steps:
2525
- name: Check out repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727

2828
- name: Set up NetLogo
2929
uses: ./setup-netlogo

check-netlogo/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ runs:
182182
steps.netlogo-models.outputs.found == 'true' &&
183183
steps.netlogo-experiments.outputs.found == 'true' &&
184184
inputs.artifacts != 'false'
185-
uses: actions/upload-artifact@v4
185+
uses: actions/upload-artifact@v7
186186
with:
187187
name: experiments-output-${{ runner.os }}
188188
path: ${{ steps.artifacts-dir.outputs.path }}

setup-netlogo/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ runs:
134134
- name: Restore NetLogo from cache
135135
id: netlogo-cache
136136
if: inputs.cache == 'true'
137-
uses: actions/cache@v4
137+
uses: actions/cache@v5
138138
with:
139139
path: ${{ steps.cache-path.outputs.path }}
140140
key: "netlogo-${{ steps.netlogo-version.outputs.version }}-${{ runner.os }}-${{ runner.arch }}"

0 commit comments

Comments
 (0)