Skip to content

Commit

Permalink
Merge pull request #49 from DimitriPapadopoulos/actions
Browse files Browse the repository at this point in the history
Update GitHub Actions
  • Loading branch information
peternewman committed Sep 27, 2022
2 parents 22ff5a2 + be0a414 commit 60adc94
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 60adc94

Please sign in to comment.