diff --git a/.github/workflows/publish_master.yml b/.github/workflows/publish_master.yml index b3c89b7..7e2ebd8 100644 --- a/.github/workflows/publish_master.yml +++ b/.github/workflows/publish_master.yml @@ -13,7 +13,7 @@ jobs: name: Publish master image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Build run: | GITHUB_REPOSITORY_LC=$(echo "${GITHUB_REPOSITORY}" | tr [A-Z] [a-z]) diff --git a/.github/workflows/publish_stable.yml b/.github/workflows/publish_stable.yml index d787bd9..18283fc 100644 --- a/.github/workflows/publish_stable.yml +++ b/.github/workflows/publish_stable.yml @@ -10,7 +10,7 @@ jobs: name: Publish stable image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Build run: | GITHUB_REPOSITORY_LC=$(echo "${GITHUB_REPOSITORY}" | tr [A-Z] [a-z]) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 06d8410..1dea6fb 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -19,10 +19,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 - name: Install codespell via pip using ${{ matrix.codespell_pip_version }} run: pip3 --quiet --quiet install ${{ matrix.codespell_pip_version }} @@ -43,7 +43,7 @@ jobs: name: Test run action runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./ with: path: test/testdata @@ -53,7 +53,7 @@ jobs: name: Check for spelling errors runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./ with: check_filenames: true @@ -81,9 +81,9 @@ jobs: include: - codespell_pip_version: 'git+https://github.com/codespell-project/codespell.git' steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 - run: pip3 --quiet --quiet install ${{ matrix.codespell_pip_version }} - run: | # Simulate the Dockerfile COPY command