Skip to content

Commit

Permalink
Merge pull request #10 from DigitalIndiaArchiver/gh-actions-update-16…
Browse files Browse the repository at this point in the history
…98548014

Update GitHub Action Versions
  • Loading branch information
srikanthlogic authored Oct 29, 2023
2 parents 0eda28a + 873180b commit fd05976
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/datasette.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1

- name: Set up Python
uses: actions/setup-python@v4.6.0
uses: actions/setup-python@v4.7.1
with:
python-version: '3.8'

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}
- uses: actions/cache@v3.3.1
- uses: actions/cache@v3.3.2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python
uses: actions/setup-python@v4.6.0
uses: actions/setup-python@v4.7.1
with:
python-version: 3.10.11

Expand All @@ -40,4 +40,4 @@ jobs:

- name: Run Archiver
run: python tn_gazette_archiver.py
- uses: stefanzweifel/git-auto-commit-action@v4.16.0
- uses: stefanzweifel/git-auto-commit-action@v5.0.0
4 changes: 2 additions & 2 deletions .github/workflows/workflow_updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3.5.2
- uses: actions/checkout@v4.1.1
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}

- name: Run GitHub Actions Version Updater
uses: saadmk11/github-actions-version-updater@v0.7.4
uses: saadmk11/github-actions-version-updater@v0.8.1
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}

0 comments on commit fd05976

Please sign in to comment.