Skip to content

Commit

Permalink
fix(actions): upgrade actions versions. (#1972)
Browse files Browse the repository at this point in the history
  • Loading branch information
TallFurryMan authored Dec 4, 2023
1 parent 0d5beb7 commit 796e862
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:

steps:
- name: Login to Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
file: ./.github/docker/Dockerfile.${{ matrix.container }}
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-i386.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Get INDI Sources
uses: actions/checkout@v1
uses: actions/checkout@v1 # Only v1 is compatible because of the different arch

- name: Build INDI Core
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Get INDI Sources
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: 'indi'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-pyindi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Get INDI Sources
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: 'indi'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Get INDI Sources
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: 'indi'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Get INDI Sources
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: 'indi'

Expand Down

0 comments on commit 796e862

Please sign in to comment.