Skip to content
Open
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/contributed-recipes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Calculate recipes matrix 🛠
id: set-matrix
Expand All @@ -41,7 +41,7 @@ jobs:

steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Build recipe 🛠
run: docker build --pull --rm --force-rm --tag my-custom-image -f ./${{ matrix.dockerfile }} ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-test-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
swap-storage: false

- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Create dev environment 📦
uses: ./.github/actions/create-dev-env

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-merge-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Create dev environment 📦
uses: ./.github/actions/create-dev-env

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-tag-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
swap-storage: false

- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Create dev environment 📦
uses: ./.github/actions/create-dev-env
- name: Load image to Docker 📥
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-wiki-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Create dev environment 📦
Expand All @@ -33,7 +33,7 @@ jobs:
path: /tmp/jupyter/manifests/

- name: Checkout Wiki Repo 📃
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ github.repository }}.wiki
path: wiki/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set Up Python 🐍
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/registry-move.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install skopeo and Docker 📦
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/registry-overviews.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Push README to Registry 🐳
uses: christian-korneck/update-container-description-action@d36005551adeaba9698d8d67a296bd16fa91f8e8 # v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
Loading