Merge pull request #173 from FirestormViewer/dependabot/github_actions/actions/checkout-6

Bump actions/checkout from 5 to 6
master
Ansariel Hiller 2025-12-03 10:14:52 +01:00 committed by GitHub
commit 8c50615b0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 14 additions and 14 deletions

View File

@ -85,7 +85,7 @@ jobs:
variants: ${{ matrix.configuration }} variants: ${{ matrix.configuration }}
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v5 uses: actions/checkout@v6
with: with:
ref: ${{ github.event.pull_request.head.sha || github.sha }} ref: ${{ github.event.pull_request.head.sha || github.sha }}
@ -94,14 +94,14 @@ jobs:
with: with:
python-version: "3.11" python-version: "3.11"
- name: Checkout build variables - name: Checkout build variables
uses: actions/checkout@v5 uses: actions/checkout@v6
with: with:
repository: secondlife/build-variables repository: secondlife/build-variables
ref: master ref: master
path: .build-variables path: .build-variables
- name: Checkout master-message-template - name: Checkout master-message-template
uses: actions/checkout@v5 uses: actions/checkout@v6
with: with:
repository: secondlife/master-message-template repository: secondlife/master-message-template
path: .master-message-template path: .master-message-template

View File

@ -56,7 +56,7 @@ jobs:
echo "/usr/local/bin" >> $GITHUB_PATH echo "/usr/local/bin" >> $GITHUB_PATH
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
- uses: actions/checkout@v5 - uses: actions/checkout@v6
# Use apt-based Python when inside the Ubuntu 22.04 container # Use apt-based Python when inside the Ubuntu 22.04 container
- name: Install Python 3.11 (container case) - name: Install Python 3.11 (container case)
if: matrix.container_image == 'ubuntu:22.04' if: matrix.container_image == 'ubuntu:22.04'
@ -183,12 +183,12 @@ jobs:
shell: bash shell: bash
- name: Get the code - name: Get the code
uses: actions/checkout@v5 uses: actions/checkout@v6
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Checkout build vars (after the main code) - name: Checkout build vars (after the main code)
uses: actions/checkout@v5 uses: actions/checkout@v6
with: with:
repository: FirestormViewer/fs-build-variables repository: FirestormViewer/fs-build-variables
path: build-variables path: build-variables
@ -519,7 +519,7 @@ jobs:
if: always() if: always()
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v5 uses: actions/checkout@v6
with: with:
sparse-checkout: | sparse-checkout: |
fsutils/download_list.py fsutils/download_list.py

View File

@ -58,7 +58,7 @@ jobs:
echo "/usr/local/bin" >> $GITHUB_PATH echo "/usr/local/bin" >> $GITHUB_PATH
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
- uses: actions/checkout@v5 - uses: actions/checkout@v6
# Use apt-based Python when inside the Ubuntu 22.04 container # Use apt-based Python when inside the Ubuntu 22.04 container
- name: Install Python 3.11 (container case) - name: Install Python 3.11 (container case)
if: matrix.container_image == 'ubuntu:22.04' if: matrix.container_image == 'ubuntu:22.04'
@ -185,12 +185,12 @@ jobs:
shell: bash shell: bash
- name: Get the code - name: Get the code
uses: actions/checkout@v5 uses: actions/checkout@v6
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Checkout build vars (after the main code) - name: Checkout build vars (after the main code)
uses: actions/checkout@v5 uses: actions/checkout@v6
with: with:
repository: FirestormViewer/fs-build-variables repository: FirestormViewer/fs-build-variables
path: build-variables path: build-variables
@ -521,7 +521,7 @@ jobs:
if: always() if: always()
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v5 uses: actions/checkout@v6
with: with:
sparse-checkout: | sparse-checkout: |
fsutils/download_list.py fsutils/download_list.py

View File

@ -31,7 +31,7 @@ jobs:
contents: read contents: read
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v5 uses: actions/checkout@v6
with: with:
sparse-checkout: | sparse-checkout: |
fsutils/download_list.py fsutils/download_list.py

View File

@ -11,7 +11,7 @@ jobs:
pre-commit: pre-commit:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v6
- uses: actions/setup-python@v6 - uses: actions/setup-python@v6
with: with:
python-version: 3.x python-version: 3.x

View File

@ -50,7 +50,7 @@ jobs:
steps: steps:
# Checkout the Repository # Checkout the Repository
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v5 uses: actions/checkout@v6
with: with:
fetch-depth: 0 # Necessary to fetch all history for tagging fetch-depth: 0 # Necessary to fetch all history for tagging