Skip to content

Commit 2ea7b10

Browse files
committed
New data collected at 2025-10-20_00-02-37
1 parent a9fb39a commit 2ea7b10

22 files changed

Lines changed: 295 additions & 101 deletions

github-actions/dalex/R-CMD-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
- name: Cache R packages
8282
if: runner.os != 'Windows'
83-
uses: actions/cache@v1
83+
uses: actions/cache@v4
8484
with:
8585
path: ${{ env.R_LIBS_USER }}
8686
key: ${{ runner.os }}-r-${{ matrix.config.r }}-${{ hashFiles('.github/depends.Rds') }}
@@ -112,7 +112,7 @@ jobs:
112112

113113
- name: Upload check results
114114
if: failure()
115-
uses: actions/upload-artifact@v3
115+
uses: actions/upload-artifact@v4
116116
with:
117117
name: ${{ runner.os }}-r${{ matrix.config.r }}-results
118118
path: check

github-actions/dalex/external-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
- name: Cache R packages
8282
if: runner.os != 'Windows'
83-
uses: actions/cache@v1
83+
uses: actions/cache@v4
8484
with:
8585
path: ${{ env.R_LIBS_USER }}
8686
key: ${{ runner.os }}-r-${{ matrix.config.r }}-${{ hashFiles('.github/depends.Rds') }}

github-actions/dalex/pkgdown.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ name: pkgdown
1212
jobs:
1313
pkgdown:
1414
runs-on: macOS-latest
15+
strategy:
16+
matrix:
17+
config:
18+
- r: '4.1.0'
19+
http-user-agent: 'github-actions'
1520
env:
1621
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1722
steps:
@@ -32,11 +37,11 @@ jobs:
3237
shell: Rscript {0}
3338

3439
- name: Cache R packages
35-
uses: actions/cache@v1
40+
uses: actions/cache@v4
3641
with:
3742
path: ${{ env.R_LIBS_USER }}
38-
key: macOS-r-4.0-1-${{ hashFiles('.github/depends.Rds') }}
39-
restore-keys: macOS-r-4.0-1-
43+
key: macOS-r-4.1.0-${{ hashFiles('.github/depends.Rds') }}
44+
restore-keys: macOS-r-4.1.0-
4045

4146
- name: Install dependencies
4247
run: |

github-actions/dalex/test-coverage.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ name: test-coverage
3636
jobs:
3737
test-coverage:
3838
runs-on: macOS-latest
39+
strategy:
40+
matrix:
41+
config:
42+
- r: '4.1.0'
43+
http-user-agent: 'github-actions'
3944
env:
4045
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
4146
steps:
@@ -56,11 +61,11 @@ jobs:
5661
shell: Rscript {0}
5762

5863
- name: Cache R packages
59-
uses: actions/cache@v1
64+
uses: actions/cache@v3
6065
with:
6166
path: ${{ env.R_LIBS_USER }}
62-
key: macOS-r-4.0-1-${{ hashFiles('.github/depends.Rds') }}
63-
restore-keys: macOS-r-4.0-1-
67+
key: macOS-r-4.1.0-${{ hashFiles('.github/depends.Rds') }}
68+
restore-keys: macOS-r-4.1.0-
6469

6570
- name: Install dependencies
6671
run: |

github-actions/ggpubr/rhub.yaml

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# R-hub's generic GitHub Actions workflow file. It's canonical location is at
2+
# https://github.com/r-hub/actions/blob/v1/workflows/rhub.yaml
3+
# You can update this file to a newer version using the rhub2 package:
4+
#
5+
# rhub::rhub_setup()
6+
#
7+
# It is unlikely that you need to modify this file manually.
8+
9+
name: R-hub
10+
run-name: "${{ github.event.inputs.id }}: ${{ github.event.inputs.name || format('Manually run by {0}', github.triggering_actor) }}"
11+
12+
on:
13+
workflow_dispatch:
14+
inputs:
15+
config:
16+
description: 'A comma separated list of R-hub platforms to use.'
17+
type: string
18+
default: 'linux,windows,macos'
19+
name:
20+
description: 'Run name. You can leave this empty now.'
21+
type: string
22+
id:
23+
description: 'Unique ID. You can leave this empty now.'
24+
type: string
25+
26+
jobs:
27+
28+
setup:
29+
runs-on: ubuntu-latest
30+
outputs:
31+
containers: ${{ steps.rhub-setup.outputs.containers }}
32+
platforms: ${{ steps.rhub-setup.outputs.platforms }}
33+
34+
steps:
35+
# NO NEED TO CHECKOUT HERE
36+
- uses: r-hub/actions/setup@v1
37+
with:
38+
config: ${{ github.event.inputs.config }}
39+
id: rhub-setup
40+
41+
linux-containers:
42+
needs: setup
43+
if: ${{ needs.setup.outputs.containers != '[]' }}
44+
runs-on: ubuntu-latest
45+
name: ${{ matrix.config.label }}
46+
strategy:
47+
fail-fast: false
48+
matrix:
49+
config: ${{ fromJson(needs.setup.outputs.containers) }}
50+
container:
51+
image: ${{ matrix.config.container }}
52+
53+
steps:
54+
- uses: r-hub/actions/checkout@v1
55+
- uses: r-hub/actions/platform-info@v1
56+
with:
57+
token: ${{ secrets.RHUB_TOKEN }}
58+
job-config: ${{ matrix.config.job-config }}
59+
- uses: r-hub/actions/setup-deps@v1
60+
with:
61+
token: ${{ secrets.RHUB_TOKEN }}
62+
job-config: ${{ matrix.config.job-config }}
63+
- uses: r-hub/actions/run-check@v1
64+
with:
65+
token: ${{ secrets.RHUB_TOKEN }}
66+
job-config: ${{ matrix.config.job-config }}
67+
68+
other-platforms:
69+
needs: setup
70+
if: ${{ needs.setup.outputs.platforms != '[]' }}
71+
runs-on: ${{ matrix.config.os }}
72+
name: ${{ matrix.config.label }}
73+
strategy:
74+
fail-fast: false
75+
matrix:
76+
config: ${{ fromJson(needs.setup.outputs.platforms) }}
77+
78+
steps:
79+
- uses: r-hub/actions/checkout@v1
80+
- uses: r-hub/actions/setup-r@v1
81+
with:
82+
job-config: ${{ matrix.config.job-config }}
83+
token: ${{ secrets.RHUB_TOKEN }}
84+
- uses: r-hub/actions/platform-info@v1
85+
with:
86+
token: ${{ secrets.RHUB_TOKEN }}
87+
job-config: ${{ matrix.config.job-config }}
88+
- uses: r-hub/actions/setup-deps@v1
89+
with:
90+
job-config: ${{ matrix.config.job-config }}
91+
token: ${{ secrets.RHUB_TOKEN }}
92+
- uses: r-hub/actions/run-check@v1
93+
with:
94+
job-config: ${{ matrix.config.job-config }}
95+
token: ${{ secrets.RHUB_TOKEN }}

github-actions/igraph/arch-emu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
alpine:
2626
runs-on: ubuntu-latest
2727

28-
# Do not run in forks
28+
# Do not run in forks (necessary because of scheduled runs)
2929
if: github.repository == 'igraph/igraph'
3030

3131
defaults:

github-actions/igraph/build-cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: MINGW
22

3-
# TODO: Check the BRANCHES element when merging the branch 'develop' to, say, 'master'.
3+
# TODO: Check the BRANCHES element when merging the branch 'develop' to, say, 'main'.
44
on:
55
push:
66
branches:
@@ -14,7 +14,7 @@ env:
1414
OMP_NUM_THREADS: 1
1515
CCACHE_DIR: ${{ github.workspace }}/ccache
1616
CCACHE_MAXSIZE: 128M
17-
CTEST_PARALLEL_LEVEL: 0 # Since CMake 3.29, a setting of 0 will try to use all available resources
17+
CTEST_PARALLEL_LEVEL: 4 # Since CMake 3.29, a setting of 0 will try to use all available resources
1818

1919
jobs:
2020
build:

github-actions/igraph/cifuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
path: ./out/artifacts
2929
- name: Upload Sarif
3030
if: always() && steps.build.outcome == 'success'
31-
uses: github/codeql-action/upload-sarif@v3
31+
uses: github/codeql-action/upload-sarif@v4
3232
with:
3333
# Path to SARIF file relative to the root of the repository
3434
sarif_file: cifuzz-sarif/results.sarif

github-actions/igraph/codeql-analysis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ name: "CodeQL"
88

99
on:
1010
push:
11-
branches: [ master, develop ]
11+
branches: [ main, develop ]
1212
pull_request:
1313
# The branches below must be a subset of the branches above
14-
branches: [ master, develop ]
14+
branches: [ main, develop ]
1515
schedule:
1616
- cron: '24 13 * * 4'
1717

@@ -24,6 +24,9 @@ jobs:
2424
contents: read
2525
security-events: write
2626

27+
# Do not run in forks
28+
if: github.repository == 'igraph/igraph'
29+
2730
strategy:
2831
fail-fast: false
2932
matrix:
@@ -41,7 +44,7 @@ jobs:
4144

4245
# Initializes the CodeQL tools for scanning.
4346
- name: Initialize CodeQL
44-
uses: github/codeql-action/init@v3
47+
uses: github/codeql-action/init@v4
4548
with:
4649
config-file: ./.github/codeql/codeql-config.yml
4750
languages: ${{ matrix.language }}
@@ -65,4 +68,4 @@ jobs:
6568
rm -rf build/CMakeFiles/CMakeTmp
6669
6770
- name: Perform CodeQL Analysis
68-
uses: github/codeql-action/analyze@v3
71+
uses: github/codeql-action/analyze@v4

github-actions/mlflow/autoformat.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
repository: ${{ needs.check-comment.outputs.repository }}
7272
ref: ${{ needs.check-comment.outputs.head_ref }}
7373
# Set fetch-depth to merge the base branch
74-
fetch-depth: 300
74+
fetch-depth: 100
7575
- name: Check diff
7676
id: diff
7777
env:
@@ -193,7 +193,7 @@ jobs:
193193
repository: ${{ needs.check-comment.outputs.repository }}
194194
ref: ${{ needs.check-comment.outputs.head_ref }}
195195
# Set fetch-depth to merge the base branch
196-
fetch-depth: 300
196+
fetch-depth: 100
197197
# As reported in https://github.com/orgs/community/discussions/25702, if an action pushes
198198
# code using `GITHUB_TOKEN`, that won't trigger new workflow runs on the PR.
199199
# A personal access token is required to trigger new workflow runs.

0 commit comments

Comments
 (0)