diff --git a/.github/workflows/ci-auto-commit-linux.yml b/.github/workflows/ci-auto-commit-linux.yml index c77dec53ac..1661ce1a8a 100644 --- a/.github/workflows/ci-auto-commit-linux.yml +++ b/.github/workflows/ci-auto-commit-linux.yml @@ -24,7 +24,7 @@ jobs: - name: Add safe directory run: git config --global --add safe.directory $GITHUB_WORKSPACE - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: master - name: Install SMARTS diff --git a/.github/workflows/ci-auto-commit-mac.yml b/.github/workflows/ci-auto-commit-mac.yml index de073995fe..3f656e28c2 100644 --- a/.github/workflows/ci-auto-commit-mac.yml +++ b/.github/workflows/ci-auto-commit-mac.yml @@ -14,7 +14,7 @@ jobs: runs-on: macos-11 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: master - name: Set up Python diff --git a/.github/workflows/ci-base-tests-linux.yml b/.github/workflows/ci-base-tests-linux.yml index e974896d08..051735dfc5 100644 --- a/.github/workflows/ci-base-tests-linux.yml +++ b/.github/workflows/ci-base-tests-linux.yml @@ -23,7 +23,7 @@ jobs: - ./examples/tests/test_examples.py steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies run: | python3.8 -m venv ${{env.venv_dir}} @@ -76,7 +76,7 @@ jobs: - e11_platoon steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies run: | cd ${GITHUB_WORKSPACE}/examples/${{matrix.tests}} @@ -108,7 +108,7 @@ jobs: - e11_platoon steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies run: | cd ${GITHUB_WORKSPACE} diff --git a/.github/workflows/ci-base-tests-mac.yml b/.github/workflows/ci-base-tests-mac.yml index b311eb4a52..8c9a00a878 100644 --- a/.github/workflows/ci-base-tests-mac.yml +++ b/.github/workflows/ci-base-tests-mac.yml @@ -26,7 +26,7 @@ jobs: - ./smarts/ray steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: master - name: Setup Python diff --git a/.github/workflows/ci-format.yml b/.github/workflows/ci-format.yml index 91a19ce0f0..f43c942903 100644 --- a/.github/workflows/ci-format.yml +++ b/.github/workflows/ci-format.yml @@ -12,7 +12,7 @@ jobs: container: ghcr.io/smarts-project/smarts:v0.6.1-minimal steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Check header run: | cd $GITHUB_WORKSPACE @@ -24,7 +24,7 @@ jobs: container: ghcr.io/smarts-project/smarts:v0.6.1-minimal steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Check docstring run: | cd $GITHUB_WORKSPACE @@ -51,7 +51,7 @@ jobs: - name: Add safe directory run: git config --global --add safe.directory $GITHUB_WORKSPACE - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Install SMARTS @@ -85,7 +85,7 @@ jobs: - name: Add safe directory run: git config --global --add safe.directory $GITHUB_WORKSPACE - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Install Enchant @@ -123,7 +123,7 @@ jobs: - name: Add safe directory run: git config --global --add safe.directory $GITHUB_WORKSPACE - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Install SMARTS with all extras and check for conflicts diff --git a/.github/workflows/ci-pull-request.yml b/.github/workflows/ci-pull-request.yml index 67b58e6f2e..ebf0b05f41 100644 --- a/.github/workflows/ci-pull-request.yml +++ b/.github/workflows/ci-pull-request.yml @@ -14,7 +14,7 @@ jobs: container: ghcr.io/smarts-project/smarts:v0.6.1-minimal steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup package run: | cd $GITHUB_WORKSPACE diff --git a/.github/workflows/ci-python-version-test.yml b/.github/workflows/ci-python-version-test.yml index fce0710f5e..e3a7c1e7d5 100644 --- a/.github/workflows/ci-python-version-test.yml +++ b/.github/workflows/ci-python-version-test.yml @@ -15,7 +15,7 @@ jobs: matrix: python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: diff --git a/.github/workflows/ci-test-learning.yml b/.github/workflows/ci-test-learning.yml index 0b6a6bdad1..4bc716cea1 100644 --- a/.github/workflows/ci-test-learning.yml +++ b/.github/workflows/ci-test-learning.yml @@ -17,7 +17,7 @@ jobs: container: ghcr.io/smarts-project/smarts:v0.6.1-minimal steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: master - name: Setup package diff --git a/.github/workflows/ci-test-long-determinism.yml b/.github/workflows/ci-test-long-determinism.yml index 57785907c7..77daf1e29f 100644 --- a/.github/workflows/ci-test-long-determinism.yml +++ b/.github/workflows/ci-test-long-determinism.yml @@ -17,7 +17,7 @@ jobs: container: ghcr.io/smarts-project/smarts:v0.6.1-minimal steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: master - name: Setup package diff --git a/.github/workflows/ci-test-memory-growth.yml b/.github/workflows/ci-test-memory-growth.yml index e340cb3a91..94e7dd7b3d 100644 --- a/.github/workflows/ci-test-memory-growth.yml +++ b/.github/workflows/ci-test-memory-growth.yml @@ -17,7 +17,7 @@ jobs: container: ghcr.io/smarts-project/smarts:v0.6.1-minimal steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: master - name: Setup package