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

Bump actions/checkout from 3 to 4 #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub-cleanup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
# Checks-out the repo under $GITHUB_WORKSPACE so we can access the delete script
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Run our script which calls the dockerhub API to delete the PR's tag
- name: Delete DockerHub image tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doxygen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Doxygen
run: sudo apt-get install doxygen graphviz -y
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Setup docker buildx
- name: 🐳 Set up docker buildx 🐳
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nubots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check for NUbots Changes
uses: dorny/paths-filter@v2
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Setup docker buildx
- name: 🐳 Set up docker buildx 🐳
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Prepare Build Directory
run: mkdir -p ../build
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check formatting
run: ./b format --check --all --verbose
8 changes: 4 additions & 4 deletions .github/workflows/nusight.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check for NUsight Changes
uses: dorny/paths-filter@v2
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Get our yarn cache if it exists
# See https://github.com/actions/cache/blob/master/examples.md#node---yarn
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Get our yarn cache if it exists
# See https://github.com/actions/cache/blob/master/examples.md#node---yarn
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Get our yarn cache if it exists
# See https://github.com/actions/cache/blob/master/examples.md#node---yarn
Expand Down
Loading