Skip to content

Commit 4fa6783

Browse files
⬆️ Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4103129 commit 4fa6783

12 files changed

+20
-20
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- name: Checkout
3232
id: checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Update system packages
3636
id: prepare

.github/workflows/ci-conda.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
conda-env: [environment]
5050

5151
steps:
52-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v4
5353

5454
- name: Check for Miniconda
5555
id: check_conda

.github/workflows/ci-linux-incremental.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
uninstall_targets: ${{ steps.build-targets.outputs.uninstall_targets }}
4444
build_targets: ${{ steps.build-targets.outputs.build_targets }}
4545
steps:
46-
- uses: actions/checkout@v3
46+
- uses: actions/checkout@v4
4747
- name: Get all packages that have changed
4848
id: changed-packages
4949
uses: tj-actions/changed-files@v38

.github/workflows/ci-macos.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
LOCAL_ARTIFACT_NAME: sage-local-commit-${{ github.sha }}-tox-local-${{ matrix.tox_env }}-${{ matrix.os }}-xcode_${{ matrix.xcode_version_factor }}
4848
LOGS_ARTIFACT_NAME: logs-commit-${{ github.sha }}-tox-local-${{ matrix.tox_env }}--${{ matrix.os }}-xcode_${{ matrix.xcode_version_factor }}
4949
steps:
50-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v4
5151
- name: Select Xcode version
5252
run: |
5353
if [ ${{ matrix.xcode_version_factor }} != default ]; then sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version_factor }}.app; fi
@@ -118,7 +118,7 @@ jobs:
118118

119119
runs-on: ubuntu-latest
120120
steps:
121-
- uses: actions/checkout@v3
121+
- uses: actions/checkout@v4
122122
with:
123123
fetch-depth: 500
124124
- name: fetch tags
@@ -160,7 +160,7 @@ jobs:
160160
TOX_ENV: local-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}
161161
LOGS_ARTIFACT_NAME: logs-commit-${{ github.sha }}-tox-local-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}-xcode_${{ matrix.xcode_version_factor }}
162162
steps:
163-
- uses: actions/checkout@v3
163+
- uses: actions/checkout@v4
164164
if: "!contains(matrix.tox_system_factor, 'nobootstrap')"
165165
- uses: actions/download-artifact@v3
166166
with:

.github/workflows/ci-wsl.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- name: Configure git
1919
run: git config --global core.symlinks true
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Install Ubuntu 20.04 (in WSL)
2222
run: |
2323
(New-Object System.Net.WebClient).DownloadFile("https://aka.ms/wslubuntu2004", "Ubuntu.appx")

.github/workflows/cygwin.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ jobs:
7373
choco install git python39 python39-pip --source cygwin
7474
7575
- name: Check out SageMath
76-
uses: actions/checkout@v3
76+
uses: actions/checkout@v4
7777
with:
7878
repository: ${{ inputs.sage_repo }}
7979
ref: ${{ inputs.sage_ref }}
8080
fetch-depth: 2000
8181

8282
- name: Check out git-trac-command
83-
uses: actions/checkout@v3
83+
uses: actions/checkout@v4
8484
with:
8585
repository: sagemath/git-trac-command
8686
path: git-trac-command

.github/workflows/dist.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
- name: Install bootstrap prerequisites
3737
run: |
3838
sudo DEBIAN_FRONTEND=noninteractive apt-get update
@@ -51,7 +51,7 @@ jobs:
5151
env:
5252
CAN_DEPLOY: ${{ secrets.SAGEMATH_PYPI_API_TOKEN != '' }}
5353
steps:
54-
- uses: actions/checkout@v3
54+
- uses: actions/checkout@v4
5555
- name: Install bootstrap prerequisites
5656
run: |
5757
sudo DEBIAN_FRONTEND=noninteractive apt-get update
@@ -106,7 +106,7 @@ jobs:
106106
# Use 'build', not 'pip wheel'
107107
CIBW_BUILD_FRONTEND: build
108108
steps:
109-
- uses: actions/checkout@v3
109+
- uses: actions/checkout@v4
110110

111111
- uses: actions/download-artifact@v3
112112
with:

.github/workflows/doc-build-pdf.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
container: ghcr.io/sagemath/sage/sage-docker-fedora-31-maximal-with-targets:dev
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Prepare
2525
run: |

.github/workflows/doc-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
container: ghcr.io/sagemath/sage/sage-ubuntu-focal-standard-with-targets:dev
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
- name: Update system packages
2323
run: |

.github/workflows/docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
EXTRA_SAGE_PACKAGES: ${{ inputs.extra_sage_packages }}
147147
steps:
148148
- name: Check out SageMath
149-
uses: actions/checkout@v3
149+
uses: actions/checkout@v4
150150
with:
151151
repository: ${{ inputs.sage_repo }}
152152
ref: ${{ inputs.sage_ref }}

.github/workflows/lint.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
- name: Set up Python
1818
uses: actions/setup-python@v4
1919
with:
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
- name: Set up Python
3232
uses: actions/setup-python@v4
3333
with:
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Checkout
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545
- name: Set up Python
4646
uses: actions/setup-python@v4
4747
with:

.github/workflows/push_to_docker_hub.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
- name: Set tag
2323
# docker/metadata-action@v4 is not used since we need to distinguish
@@ -76,7 +76,7 @@ jobs:
7676
runs-on: ubuntu-latest
7777
steps:
7878
- name: Checkout
79-
uses: actions/checkout@v3
79+
uses: actions/checkout@v4
8080

8181
- name: Set tag
8282
# docker/metadata-action@v4 is not used since we need to distinguish

0 commit comments

Comments
 (0)