Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

chore(deps): bump actions/checkout from 2 to 4 #1468

Merged
merged 1 commit into from
Jan 2, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/alice_async_comms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Create Async Comms Posts in Relevant Locations
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Post engineering log entry
env:
GITHUB_TOKEN: ${{ github.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_images_containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
max-parallel: 40
matrix: ${{ fromJSON(inputs.manifests) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: '${{ github.repository }}'
ref: '${{ matrix.commit }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dffml_build_images_containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
length: ${{ steps.create-manifest-instance.outputs.length }}
manifest: ${{ steps.create-manifest-instance.outputs.github_actions_manifest }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build manifest from changed dockerfiles
uses: "./.github/actions/create_manifest_instance_build_images_containers"
id: create-manifest-instance
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pin_downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build manifest from plugins.json from pull request
id: create-manifest-instance
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rfc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
python-version: [3.7]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Checkout full upstream repo
run: |
git remote set-url origin https://github.com/intel/dffml
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python-version:
- "3.12"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
node-version: [12.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Checkout full upstream repo
run: |
git remote set-url origin https://github.com/intel/dffml
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: |
set -x
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
- "3.12"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Checkout full upstream repo
run: |
git remote set-url origin https://github.com/intel/dffml
Expand Down Expand Up @@ -401,7 +401,7 @@ jobs:
- docs/tutorials/sources/file.rst

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Checkout full upstream repo
run: |
git remote set-url origin https://github.com/intel/dffml
Expand Down Expand Up @@ -446,7 +446,7 @@ jobs:
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Checkout full upstream repo
run: |
git remote set-url origin https://github.com/intel/dffml
Expand Down
Loading