Skip to content

Commit f06a37e

Browse files
Bump the github-actions group with 2 updates (#36)
* Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> * Update macOS workflow to remove macOS-15 and add macOS-14 * Remove Python 3.7 version check from workflow Removed Python 3.7 from the list of versions to check. * Remove Python 3.7 version check from workflow Removed check for Python 3.7 version from workflow. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com>
1 parent 6e4e13e commit f06a37e

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

.github/workflows/c_on_three_oses.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
Path('result.txt').write_text(result_line)
6767
6868
- name: Upload results
69-
uses: actions/upload-artifact@v6
69+
uses: actions/upload-artifact@v7
7070
with:
7171
name: result-${{ matrix.os }}-${{ matrix.ccompiler }}
7272
path: result.txt
@@ -76,7 +76,7 @@ jobs:
7676
runs-on: ubuntu-latest
7777
steps:
7878
- name: Download all artifacts
79-
uses: actions/download-artifact@v7
79+
uses: actions/download-artifact@v8
8080
with:
8181
path: results
8282

@@ -169,7 +169,7 @@ jobs:
169169
print(markdown_table)
170170
171171
- name: Upload markdown table
172-
uses: actions/upload-artifact@v6
172+
uses: actions/upload-artifact@v7
173173
with:
174174
name: size-comparison-table
175175
path: size_comparison_table.md

.github/workflows/macOS_on_demand.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
os: [macos-26, macos-15, macos-15-intel, macos-14, macos-13, macos-latest]
18-
# arch: [ARM64, X64] # macos-13 and macos-15-intel are X64, others are ARM64
17+
os: [macos-26, macos-15, macos-15-intel, macos-14, macos-latest]
18+
# arch: [ARM64, X64] # macos-15-intel is X64, others are ARM64
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- name: ${{ runner.os }} (${{ matrix.os }}) on ${{ runner.arch }}
@@ -31,7 +31,7 @@ jobs:
3131
- name: Display ${{ matrix.os }}_cpu.md content
3232
run: cat ${{ matrix.os }}_cpu.md
3333
- name: Upload ${{ matrix.os }}_cpu.md artifact
34-
uses: actions/upload-artifact@v6
34+
uses: actions/upload-artifact@v7
3535
with:
3636
name: ${{ matrix.os }}_cpu
3737
path: ${{ matrix.os }}_cpu.md
@@ -65,7 +65,7 @@ jobs:
6565
steps:
6666
- uses: actions/checkout@v6
6767
- name: Download all CPU artifacts
68-
uses: actions/download-artifact@v7
68+
uses: actions/download-artifact@v8
6969
with:
7070
pattern: "*_cpu"
7171
merge-multiple: true
@@ -125,14 +125,14 @@ jobs:
125125
else:
126126
print("Contents are the same, no update needed")
127127
- name: Upload combined macOS_CPUs.md
128-
uses: actions/upload-artifact@v6
128+
uses: actions/upload-artifact@v7
129129
with:
130130
name: macOS_CPUs_final
131131
path: |
132132
macOS_CPUs.md
133133
macOS_CPUs_combined.md
134-
pythons_on_macOS_13:
135-
runs-on: macos-13
134+
pythons_on_macOS_14:
135+
runs-on: macos-14
136136
steps:
137137
- uses: actions/checkout@v6
138138
- uses: actions/setup-python@v6
@@ -145,10 +145,8 @@ jobs:
145145
3.10
146146
3.9
147147
3.8
148-
3.7
149148
allow-prereleases: true
150149
- run: |
151-
python3.7 --version
152150
python3.8 --version
153151
python3.9 --version
154152
python3.10 --version

0 commit comments

Comments
 (0)