Skip to content

Commit

Permalink
update action version
Browse files Browse the repository at this point in the history
  • Loading branch information
fostermh committed Feb 11, 2023
1 parent dc2cdaa commit 822a8f0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ckan-docker-image-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ jobs:
steps:
- if: github.event_name == 'pull_request'
name: Checkout pull request with submodules
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
submodules: 'recursive'
fetch-depth: '0'
- if: github.event_name != 'pull_request'
name: Checkout non pull request with submodules
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: '0'
Expand All @@ -63,11 +63,11 @@ jobs:
run: echo "TAG=${{ github.event.release.tag_name }}" >> $GITHUB_ENV

- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: satackey/[email protected].8
- uses: satackey/[email protected].11
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true
- run: docker build -t cioos/ckan:$TAG -t cioos/ckan:latest .
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ckan-docker-image-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
steps:
- if: github.event_name == 'pull_request'
name: Checkout pull request with submodules
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
submodules: 'recursive'
fetch-depth: '0'
- if: github.event_name != 'pull_request'
name: Checkout non pull request with submodules
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: '0'
Expand All @@ -52,11 +52,11 @@ jobs:
run: echo "TAG=${{ github.event.release.tag_name }}" >> $GITHUB_ENV

- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: satackey/[email protected].8
- uses: satackey/[email protected].11
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true
- run: docker build -t cioos/ckan:DEV_$TAG -t cioos/ckan:DEV_latest .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/db-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
name: build db docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set current date as TAG env variable for push requests
run: echo "TAG=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/solr-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
name: build Solr docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set current date as TAG env variable for push requests
run: echo "TAG=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand Down

0 comments on commit 822a8f0

Please sign in to comment.